Currently the subscribed events are referenced to by hardcoded string literals. ```php public static function getSubscribedEvents() { return [ 'kernel.request' => 'onKernelRequest', ]; } ``` I think referencing events with constants is more reliable. ```php public static function getSubscribedEvents() { return [ KernelEvents::REQUEST => 'onKernelRequest', ]; } ```