public function SamlService::setKeyRepository in SAML Authentication 8.3
Same name and namespace in other branches
- 4.x src/SamlService.php \Drupal\samlauth\SamlService::setKeyRepository()
Set the Key repository service.
This has a separate setter (unlike all other dependent objects mentioned in the constructor) because it's an optional dependency.
Parameters
\Drupal\key\KeyRepositoryInterface $key_repository: the Key repository service.
File
- src/
SamlService.php, line 201
Class
- SamlService
- Governs communication between the SAML toolkit and the IdP / login behavior.
Namespace
Drupal\samlauthCode
public function setKeyRepository(KeyRepositoryInterface $key_repository) {
$this->keyRepository = $key_repository;
}