mirror of
https://github.com/werkraum-media/watchlist.git
synced 2025-03-15 08:03:46 +01:00

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
10 lines
180 B
PHP
10 lines
180 B
PHP
<?php
|
|
|
|
namespace WerkraumMedia\Watchlist\Session;
|
|
|
|
interface CookieSessionInterface
|
|
{
|
|
public function getCookieName(): string;
|
|
|
|
public function getCookieValue(): string;
|
|
}
|