function SessionHandler::__construct
Same name in other branches
- 9 core/lib/Drupal/Core/Session/SessionHandler.php \Drupal\Core\Session\SessionHandler::__construct()
- 8.9.x core/lib/Drupal/Core/Session/SessionHandler.php \Drupal\Core\Session\SessionHandler::__construct()
- 11.x core/lib/Drupal/Core/Session/SessionHandler.php \Drupal\Core\Session\SessionHandler::__construct()
Constructs a new SessionHandler instance.
Parameters
\Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack.
\Drupal\Core\Database\Connection $connection: The database connection.
\Drupal\Component\Datetime\TimeInterface|null $time: The time service.
File
-
core/
lib/ Drupal/ Core/ Session/ SessionHandler.php, line 44
Class
- SessionHandler
- Default session handler.
Namespace
Drupal\Core\SessionCode
public function __construct(RequestStack $request_stack, Connection $connection, ?TimeInterface $time = NULL) {
$this->requestStack = $request_stack;
$this->connection = $connection;
if (!$time) {
@trigger_error('Calling ' . __METHOD__ . '() without the $time argument is deprecated in drupal:10.3.0 and it will be required in drupal:11.0.0. See https://www.drupal.org/node/3387233', E_USER_DEPRECATED);
$this->time = \Drupal::service(TimeInterface::class);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.