Registers the methods in this class that should be listeners.
array An array of event listener definitions.
Overrides EventSubscriberInterface::getSubscribedEvents
static function getSubscribedEvents() {
// The RouterListener has priority 32, and we need to run after that.
$events[KernelEvents::REQUEST][] = array(
'onRequestSetController',
30,
);
return $events;
}