function FormTestEventSubscriber::getSubscribedEvents

File

core/modules/system/tests/modules/form_test/src/EventSubscriber/FormTestEventSubscriber.php, line 41

Class

FormTestEventSubscriber
Test event subscriber to add new attributes to the request.

Namespace

Drupal\form_test\EventSubscriber

Code

public static function getSubscribedEvents() : array {
  $events[KernelEvents::REQUEST][] = [
    'onKernelRequest',
  ];
  $events[KernelEvents::RESPONSE][] = [
    'onKernelResponse',
  ];
  return $events;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.