You are here

public static function LdapSsoBootSubscriber::getSubscribedEvents in LDAP Single Sign On 8.4

Same name and namespace in other branches
  1. 8 src/LdapSsoBootSubscriber.php \Drupal\ldap_sso\LdapSsoBootSubscriber::getSubscribedEvents()

File

src/LdapSsoBootSubscriber.php, line 159

Class

LdapSsoBootSubscriber
Provides the automated single sign-on provider.

Namespace

Drupal\ldap_sso

Code

public static function getSubscribedEvents() : array {
  return [
    KernelEvents::REQUEST => [
      'checkSsoLoad',
      20,
    ],
  ];
}