You are here

public static function ClientErrorResponseSubscriber::getSubscribedEvents in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/EventSubscriber/ClientErrorResponseSubscriber.php \Drupal\Core\EventSubscriber\ClientErrorResponseSubscriber::getSubscribedEvents()

File

core/lib/Drupal/Core/EventSubscriber/ClientErrorResponseSubscriber.php, line 42

Class

ClientErrorResponseSubscriber
Response subscriber to set the '4xx-response' cache tag on 4xx responses.

Namespace

Drupal\Core\EventSubscriber

Code

public static function getSubscribedEvents() {

  // Priority 10, so that it runs before FinishResponseSubscriber, which will
  // expose the cacheability metadata in the form of headers.
  $events[KernelEvents::RESPONSE][] = [
    'onRespond',
    10,
  ];
  return $events;
}