1 | <?php |
||
29 | 1 | class NullHandler implements \SessionHandlerInterface |
|
30 | { |
||
31 | /** |
||
32 | * Implement nette smart magic |
||
33 | */ |
||
34 | 1 | use Nette\SmartObject; |
|
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function open($savePath, $sessionName) |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | public function close() |
||
51 | |||
52 | /** |
||
53 | * {@inheritdoc} |
||
54 | */ |
||
55 | public function read($sessionId) |
||
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | */ |
||
63 | public function write($sessionId, $data) |
||
67 | |||
68 | /** |
||
69 | * {@inheritdoc} |
||
70 | */ |
||
71 | public function destroy($sessionId) |
||
75 | |||
76 | /** |
||
77 | * {@inheritdoc} |
||
78 | */ |
||
79 | public function gc($maxLifetime) |
||
83 | } |
||
84 |