You are here

public static function BootSubscriber::getSubscribedEvents in Bakery Single Sign-On System 8.2

File

src/EventSubscriber/BootSubscriber.php, line 79
For Boot event subscribe.

Class

BootSubscriber
For handling chocolatechip cookie on boot.

Namespace

Drupal\bakery\EventSubscriber

Code

public static function getSubscribedEvents() {

  // Should be called on cached pages also.
  return [
    KernelEvents::REQUEST => [
      'onEvent',
      27,
    ],
  ];
}