You are here

public function AuthenticationManager::__construct in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Authentication/AuthenticationManager.php \Drupal\Core\Authentication\AuthenticationManager::__construct()

Creates a new authentication manager instance.

Parameters

\Drupal\Core\Authentication\AuthenticationCollectorInterface $auth_collector: The authentication provider collector.

File

core/lib/Drupal/Core/Authentication/AuthenticationManager.php, line 38
Contains \Drupal\Core\Authentication\AuthenticationManager.

Class

AuthenticationManager
Manager for authentication.

Namespace

Drupal\Core\Authentication

Code

public function __construct(AuthenticationCollectorInterface $auth_collector) {
  $this->authCollector = $auth_collector;
}