diff options
author | Jens Brandt <jens@brandt-george.de> | 2018-05-14 21:21:50 +0200 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2018-08-12 12:35:40 +0200 |
commit | b409d2986fcca5bcafdad4b3b33094c12d8530a6 (patch) | |
tree | 49384f0a5a8129e8b3c9729ce7a5f0ec460664e2 | |
parent | 7f270c1d26e09f0d238e283fb970a63f36b47e03 (diff) |
rename hotfix to camelCase
-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 aaba4e77..f737bdd0 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->terminate_application_immediately(); + $this->terminateApplicationImmediately(); } /** @@ -73,7 +73,7 @@ class Handler * @codeCoverageIgnore * @param string $message */ - protected function terminate_application_immediately($message = '') + protected function terminateApplicationImmediately($message = '') { echo $message; die(); |