| 1 | <?php |
||
| 18 | class NullSession implements SessionInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * |
||
| 22 | * Start Session |
||
| 23 | * |
||
| 24 | * @return bool |
||
| 25 | * |
||
| 26 | */ |
||
| 27 | 1 | public function start() |
|
| 31 | |||
| 32 | /** |
||
| 33 | * |
||
| 34 | * Resume previous session |
||
| 35 | * |
||
| 36 | * @return bool |
||
| 37 | * |
||
| 38 | */ |
||
| 39 | 1 | public function resume() |
|
| 43 | |||
| 44 | /** |
||
| 45 | * |
||
| 46 | * Re generate session id |
||
| 47 | * |
||
| 48 | * @return mixed |
||
| 49 | * |
||
| 50 | */ |
||
| 51 | 1 | public function regenerateId() |
|
| 55 | } |
||
| 56 |