mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fix CS error
This commit is contained in:
parent
38cad279d1
commit
cbdc89ddee
1 changed files with 7 additions and 0 deletions
|
@ -330,6 +330,13 @@ class ExceptionRenderer {
|
||||||
$this->controller->response->send();
|
$this->controller->response->send();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Run the shutdown events.
|
||||||
|
*
|
||||||
|
* Triggers the afterFilter and afterDispatch events.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
protected function _shutdown() {
|
protected function _shutdown() {
|
||||||
$afterFilterEvent = new CakeEvent('Controller.shutdown', $this->controller);
|
$afterFilterEvent = new CakeEvent('Controller.shutdown', $this->controller);
|
||||||
$this->controller->getEventManager()->dispatch($afterFilterEvent);
|
$this->controller->getEventManager()->dispatch($afterFilterEvent);
|
||||||
|
|
Loading…
Reference in a new issue