function ProfilerSubscriber::getSubscribedEvents
File
-
webprofiler/
src/ EventSubscriber/ ProfilerSubscriber.php, line 111
Class
Namespace
Drupal\webprofiler\EventSubscriberCode
public static function getSubscribedEvents() {
return [
KernelEvents::RESPONSE => [
'onKernelResponse',
-100,
],
KernelEvents::EXCEPTION => 'onKernelException',
KernelEvents::FINISH_REQUEST => [
'onKernelFinishRequest',
-1024,
],
];
}