function Cookie::__construct
Same name in other branches
- 8.9.x core/modules/user/src/Authentication/Provider/Cookie.php \Drupal\user\Authentication\Provider\Cookie::__construct()
- 10 core/modules/user/src/Authentication/Provider/Cookie.php \Drupal\user\Authentication\Provider\Cookie::__construct()
- 11.x core/modules/user/src/Authentication/Provider/Cookie.php \Drupal\user\Authentication\Provider\Cookie::__construct()
Constructs a new cookie authentication provider.
Parameters
\Drupal\Core\Session\SessionConfigurationInterface $session_configuration: The session configuration.
\Drupal\Core\Database\Connection $connection: The database connection.
\Drupal\Core\Messenger\MessengerInterface|null $messenger: The messenger.
File
-
core/
modules/ user/ src/ Authentication/ Provider/ Cookie.php, line 59
Class
- Cookie
- Cookie based authentication provider.
Namespace
Drupal\user\Authentication\ProviderCode
public function __construct(SessionConfigurationInterface $session_configuration, Connection $connection, MessengerInterface $messenger = NULL) {
$this->sessionConfiguration = $session_configuration;
$this->connection = $connection;
$this->messenger = $messenger;
if ($this->messenger === NULL) {
@trigger_error('The MessengerInterface must be passed to ' . __NAMESPACE__ . '\\Cookie::__construct(). It was added in drupal:9.2.0 and will be required before drupal:10.0.0.', E_USER_DEPRECATED);
$this->messenger = \Drupal::messenger();
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.