diff options
author | Jens Brandt <jens@brandt-george.de> | 2018-05-10 15:29:32 +0200 |
---|---|---|
committer | Jens Brandt <jens@brandt-george.de> | 2018-05-10 15:29:32 +0200 |
commit | 28fadbd19d77196a28cf94f14bedaefb9eb98fcd (patch) | |
tree | 89333d8ec3f0e30ab1494506015528ebf823f5af /src/Exceptions | |
parent | ae4dbf95ba9f2a00b70cd27f5fce13884fa9060d (diff) |
Hotfix php7 syntax error
Diffstat (limited to 'src/Exceptions')
-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 ee15717a..301e2b7c 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->stirb(); } /** @@ -73,7 +73,7 @@ class Handler * @codeCoverageIgnore * @param string $message */ - protected function die($message = '') + protected function stirb($message = '') { echo $message; die(); |