Files
breadcrumb-the-shire/lib/Http/SessionStoreInterface.php
2026-03-06 00:44:52 +01:00

20 lines
376 B
PHP

<?php
namespace MintyPHP\Http;
interface SessionStoreInterface
{
public function get(string $key, mixed $default = null): mixed;
public function set(string $key, mixed $value): void;
public function has(string $key): bool;
public function remove(string $key): void;
/**
* @return array<string, mixed>
*/
public function all(): array;
}