summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2018-05-15 15:09:42 +0200
committerGitHub <noreply@github.com>2018-05-15 15:09:42 +0200
commit3c1bb5c8b468520e07b6cf57a652d3fbef598352 (patch)
tree071c097f9a1089a13346cf21c4bcbb543e7e2fcd
parentae4dbf95ba9f2a00b70cd27f5fce13884fa9060d (diff)
parent4a5ef5f98a42ef68f9d9646aadedb7eb1c18f59e (diff)
Merge pull request #431 from froscon/hotfix
Hotfix php7 syntax error
-rw-r--r--src/Exceptions/Handler.php4
1 files changed, 2 insertions, 2 deletions
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();