function ProfilerSubscriber::getSubscribedEvents

File

webprofiler/src/EventSubscriber/ProfilerSubscriber.php, line 111

Class

ProfilerSubscriber

Namespace

Drupal\webprofiler\EventSubscriber

Code

public static function getSubscribedEvents() {
    return [
        KernelEvents::RESPONSE => [
            'onKernelResponse',
            -100,
        ],
        KernelEvents::EXCEPTION => 'onKernelException',
        KernelEvents::FINISH_REQUEST => [
            'onKernelFinishRequest',
            -1024,
        ],
    ];
}