1 | <?php |
||
10 | class MemoryStorage implements StorageInterface |
||
11 | { |
||
12 | /** @var array */ |
||
13 | private $sessions = []; |
||
14 | |||
15 | public function save(StorableSessionInterface $session) |
||
19 | |||
20 | public function load(SessionIdInterface $id):StorableSessionInterface |
||
29 | |||
30 | public function destroy(SessionIdInterface $id) |
||
38 | |||
39 | private function has(string $id):bool |
||
43 | } |
||
44 |