| 1 | <?php |
||
| 12 | class FileStorage implements StorageInterface |
||
| 13 | { |
||
| 14 | /** @var string */ |
||
| 15 | private $directory; |
||
| 16 | |||
| 17 | public function __construct(string $directory) |
||
| 21 | |||
| 22 | public function save(StorableSessionInterface $session) |
||
| 26 | |||
| 27 | public function load(SessionIdInterface $id):StorableSessionInterface |
||
| 36 | |||
| 37 | public function destroy(SessionIdInterface $id) |
||
| 41 | |||
| 42 | private function buildPath(SessionIdInterface $id) : string |
||
| 46 | } |
||
| 47 |