summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2018-08-05 10:59:39 +0200
committerGitHub <noreply@github.com>2018-08-05 10:59:39 +0200
commit9ca36bed3446cdd4060d7d6fa1025512d0922e0e (patch)
treeaf7c91b275f5fa94128f58f31062fb3cf68f87a4 /src
parentde0ac90675718552efc122115495cd5df6b86ccf (diff)
parent46e7fc89b469a774fa26a89b5124306fa0ea258e (diff)
Merge pull request #442 from MyIgel/tests-fix-for-hotfix-431
Fixes tests after #431 (Hotfix php7 syntax error)
Diffstat (limited to 'src')
-rw-r--r--src/Exceptions/Handler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Exceptions/Handler.php b/src/Exceptions/Handler.php
index f737bdd0..6b3300e6 100644
--- a/src/Exceptions/Handler.php
+++ b/src/Exceptions/Handler.php
@@ -76,7 +76,7 @@ class Handler
protected function terminateApplicationImmediately($message = '')
{
echo $message;
- die();
+ die(1);
}
/**