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 |
| EXCEPTION |
The EXCEPTION event occurs when an uncaught exception appears This event allows you to create a response for a thrown exception or |
| 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 |
The CONTROLLER event occurs once a controller was found for handling a request This event allows you to change the controller that will handle the |
| RESPONSE |
The RESPONSE event occurs once a response was created for replying to a request This event allows you to modify or replace the response that will be |
| TERMINATE |
The TERMINATE event occurs once a response was sent This event allows you to run expensive post-response jobs. |