| 1 | <?php |
||
| 14 | class NativeSessionHandler extends SymfonyNativeSessionHandler |
||
|
|
|||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @param string $savePath Path of directory to save session files |
||
| 18 | * Default null will leave setting as defined by PHP. |
||
| 19 | * '/path', 'host:port' |
||
| 20 | * @param string $saveHandler Could be any handler supported by php |
||
| 21 | * Default null will leave setting as defined by PHP. |
||
| 22 | * 'redis', 'file' |
||
| 23 | * |
||
| 24 | * @see http://php.net/session.configuration.php#ini.session.save-path for further details. |
||
| 25 | */ |
||
| 26 | public function __construct($savePath = null, $saveHandler = null) |
||
| 36 | } |
||
| 37 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.