You are here

public function ShibbolethAuthenticationProvider::__construct in Shibboleth Authentication 8.4

Constructs a HTTP basic authentication provider object.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.

\Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager service.

File

src/Authentication/Provider/ShibbolethAuthenticationProvider.php, line 44
Contains Drupal\shib_auth\Authentication\Provider\ShibbolethAuthenticationProvider.

Class

ShibbolethAuthenticationProvider
Class ShibbolethAuthenticationProvider.

Namespace

Drupal\shib_auth\Authentication\Provider

Code

public function __construct(ConfigFactoryInterface $config_factory, EntityManagerInterface $entity_manager) {
  $this->configFactory = $config_factory;
  $this->entityManager = $entity_manager;
}