| 1 | <?php |
||
| 17 | class Void implements Handler |
||
| 18 | { |
||
| 19 | use HandlerTrait; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | public function open($savePath, $sessionName) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function close() |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function read($sessionId) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * {@inheritdoc} |
||
| 47 | */ |
||
| 48 | public function write($sessionId, $sessionData) |
||
| 52 | |||
| 53 | /** |
||
| 54 | * {@inheritdoc} |
||
| 55 | */ |
||
| 56 | public function destroy($sessionId) |
||
| 60 | |||
| 61 | /** |
||
| 62 | * {@inheritdoc} |
||
| 63 | * |
||
| 64 | * @SuppressWarnings(PMD.ShortMethodName) |
||
| 65 | */ |
||
| 66 | public function gc($maxLifetime) |
||
| 70 | } |
||
| 71 |