KernelEvents

KernelEvents

class KernelEvents

Contains all events thrown in the HttpKernel component.

Constants

REQUEST

The REQUEST event occurs at the very beginning of request dispatching.

This event allows you to create a response for a request before any other code in the framework is executed.

EXCEPTION

The EXCEPTION event occurs when an uncaught exception appears.

This event allows you to create a response for a thrown exception or to modify the thrown exception.

VIEW

The VIEW event occurs when the return value of a controller is not a Response instance.

This event allows you to create a response for the return value of the controller.

CONTROLLER