You are here

static function QueryPathEventSubscriber::getSubscribedEvents in Opigno module 8

Same name and namespace in other branches
  1. 3.x src/EventSubscriber/QueryPathEventSubscriber.php \Drupal\opigno_module\EventSubscriber\QueryPathEventSubscriber::getSubscribedEvents()

File

src/EventSubscriber/QueryPathEventSubscriber.php, line 43

Class

QueryPathEventSubscriber

Namespace

Drupal\opigno_module\EventSubscriber

Code

static function getSubscribedEvents() {
  $events[KernelEvents::RESPONSE][] = [
    'checkRedirection',
  ];
  return $events;
}