watchlist/Classes/Session/CookieSessionInterface.php
Daniel Gohlke e8b9a8143b [FEATURE] Allow replacement of cookie implementation
The implementation is now extracted into an interface.
That way it is easier to replace the concrete implementation for cookie
handling
with a custom one.

Relates: #21
2025-02-10 09:04:50 +01:00

10 lines
180 B
PHP

<?php
namespace WerkraumMedia\Watchlist\Session;
interface CookieSessionInterface
{
public function getCookieName(): string;
public function getCookieValue(): string;
}