| 1 | <?php |
||
| 5 | class Session implements \ArrayAccess{ |
||
| 6 | |||
| 7 | public function __construct(array $conf){ |
||
| 12 | |||
| 13 | public function set($key, $value){ |
||
| 16 | |||
| 17 | public function setFlash($identifier, $message){ |
||
| 20 | |||
| 21 | public function getFlash($identifier){ |
||
| 28 | |||
| 29 | public function get($key){ |
||
| 34 | |||
| 35 | public function has($key){ |
||
| 38 | |||
| 39 | public function delete($key){ |
||
| 44 | |||
| 45 | public function destroy(){ |
||
| 48 | |||
| 49 | public function offsetGet($offset){ |
||
| 52 | |||
| 53 | public function offsetSet($offset, $value){ |
||
| 56 | |||
| 57 | public function offsetExists($offset){ |
||
| 60 | |||
| 61 | public function offsetUnset($offset){ |
||
| 64 | } |
||
| 65 | |||
| 66 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.