1 | <?php |
||
16 | class NativeSessionHandler extends \SessionHandler |
||
17 | { |
||
18 | /** |
||
19 | * @param string $savePath Path of directory to save session files |
||
20 | * Default null will leave setting as defined by PHP. |
||
21 | * '/path', 'host:port' |
||
22 | * @param string $saveHandler Could be any handler supported by php |
||
23 | * Default null will leave setting as defined by PHP. |
||
24 | * 'redis', 'file' |
||
25 | * |
||
26 | * @see http://php.net/manual/en/session.configuration.php#ini.session.save-path for further details. |
||
27 | */ |
||
28 | public function __construct($savePath = null, $saveHandler = null) |
||
38 | } |
||
39 |