diff options
author | Jens Brandt <jens@brandt-george.de> | 2018-05-14 21:08:15 +0200 |
---|---|---|
committer | Jens Brandt <jens@brandt-george.de> | 2018-05-14 21:08:15 +0200 |
commit | cfc2493bb54cb6600c8319d4c6dcdb691e7a832b (patch) | |
tree | e54325276014ea20d60bd2ca81dc68c3b5f49f7b | |
parent | 28fadbd19d77196a28cf94f14bedaefb9eb98fcd (diff) |
rename hotfix to english
-rw-r--r-- | src/Exceptions/Handler.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Exceptions/Handler.php b/src/Exceptions/Handler.php index 301e2b7c..aaba4e77 100644 --- a/src/Exceptions/Handler.php +++ b/src/Exceptions/Handler.php @@ -64,7 +64,7 @@ class Handler $handler = $this->handler[$this->environment]; $handler->report($e); $handler->render($this->request, $e); - $this->stirb(); + $this->terminate_application_immediately(); } /** @@ -73,7 +73,7 @@ class Handler * @codeCoverageIgnore * @param string $message */ - protected function stirb($message = '') + protected function terminate_application_immediately($message = '') { echo $message; die(); |