Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix CS error
  • Loading branch information
biesbjerg committed Jul 14, 2016
1 parent 38cad27 commit cbdc89d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/Cake/Error/ExceptionRenderer.php
Expand Up @@ -330,6 +330,13 @@ protected function _outputMessageSafe($template) {
$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);
Expand Down

0 comments on commit cbdc89d

Please sign in to comment.