comparison vendor/symfony/http-foundation/Session/Storage/Handler/NativeSessionHandler.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
10 */ 10 */
11 11
12 namespace Symfony\Component\HttpFoundation\Session\Storage\Handler; 12 namespace Symfony\Component\HttpFoundation\Session\Storage\Handler;
13 13
14 /** 14 /**
15 * Adds SessionHandler functionality if available. 15 * @deprecated since version 3.4, to be removed in 4.0. Use \SessionHandler instead.
16 *
17 * @see http://php.net/sessionhandler 16 * @see http://php.net/sessionhandler
18 */ 17 */
19 class NativeSessionHandler extends \SessionHandler 18 class NativeSessionHandler extends \SessionHandler
20 { 19 {
20 public function __construct()
21 {
22 @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);
23 }
21 } 24 }