Fix CS error

This commit is contained in:
Kim Biesbjerg 2016-07-14 05:50:37 +02:00
parent 38cad279d1
commit cbdc89ddee

View file

@ -330,6 +330,13 @@ class ExceptionRenderer {
$this->controller->response->send();
}
/**
* Run the shutdown events.
*
* Triggers the afterFilter and afterDispatch events.
*
* @return void
*/
protected function _shutdown() {
$afterFilterEvent = new CakeEvent('Controller.shutdown', $this->controller);
$this->controller->getEventManager()->dispatch($afterFilterEvent);