function RouteAccessResponseSubscriber::getSubscribedEvents
File
- 
              core/lib/ Drupal/ Core/ EventSubscriber/ RouteAccessResponseSubscriber.php, line 50 
Class
- RouteAccessResponseSubscriber
- Response subscriber to bubble the route's access result's cacheability.
Namespace
Drupal\Core\EventSubscriberCode
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;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
