Chris@0: Chris@0: * Chris@0: * For the full copyright and license information, please view the LICENSE Chris@0: * file that was distributed with this source code. Chris@0: */ Chris@0: Chris@0: namespace Symfony\Component\HttpFoundation\Session\Storage\Handler; Chris@0: Chris@0: /** Chris@14: * @deprecated since version 3.4, to be removed in 4.0. Use \SessionHandler instead. Chris@0: * @see http://php.net/sessionhandler Chris@0: */ Chris@0: class NativeSessionHandler extends \SessionHandler Chris@0: { Chris@14: public function __construct() Chris@14: { Chris@14: @trigger_error('The '.__NAMESPACE__.'\NativeSessionHandler class is deprecated since Symfony 3.4 and will be removed in 4.0. Use the \SessionHandler class instead.', E_USER_DEPRECATED); Chris@14: } Chris@0: }