The class Symfony\Component\HttpFo...er\NativeSessionHandler has been deprecated with message: since version 3.4, to be removed in 4.0. Use \SessionHandler instead.
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.
Loading history...
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)
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.