ApplicationEvent.php
70 public function __construct($stage, Request $request, Response $response=null, Controller $controller=null) {
Response holds the response values that are used as output from Controller instances.
Definition: Response.php:20
Request holds the request values that are used as input to Controller instances.
Definition: Request.php:18
const AFTER_EXECUTE_CONTROLLER
A AFTER_EXECUTE_CONTROLLER event occurs after the current controller is executed.
Definition: ApplicationEvent.php:56
const BEFORE_ROUTE_ACTION
A BEFORE_ROUTE_ACTION event occurs before the request is mapped to an action key.
Definition: ApplicationEvent.php:38
const BEFORE_INITIALIZE_CONTROLLER
A BEFORE_INITIALIZE_CONTROLLER event occurs before the current controller is initialized.
Definition: ApplicationEvent.php:44
__construct($stage, Request $request, Response $response=null, Controller $controller=null)
Constructor.
Definition: ApplicationEvent.php:70
ApplicationEvent instances are fired at different stages of the program flow.
Definition: ApplicationEvent.php:29
const BEFORE_EXECUTE_CONTROLLER
A BEFORE_EXECUTE_CONTROLLER event occurs after the current controller is initialized and before it is...
Definition: ApplicationEvent.php:50
Controller is the base class of all controllers.
Definition: Controller.php:49