Merge pull request #431 from froscon/hotfix

Hotfix php7 syntax error
main
msquare 7 years ago committed by GitHub
commit 3c1bb5c8b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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();

Loading…
Cancel
Save