diff --git a/src/Exceptions/Handler.php b/src/Exceptions/Handler.php index ee15717a..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->die(); + $this->terminateApplicationImmediately(); } /** @@ -73,7 +73,7 @@ class Handler * @codeCoverageIgnore * @param string $message */ - protected function die($message = '') + protected function terminateApplicationImmediately($message = '') { echo $message; die();