Fixed tests after #431: Hotfix php7 syntax error

This commit is contained in:
Igor Scheller 2018-08-04 22:01:07 +02:00
parent de0ac90675
commit 46e7fc89b4
3 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -22,6 +22,7 @@ _vimrc_local.vim
/config/config.php
/test/coverage
/public/coverage
/coverage
# Composer files
/vendor/

View File

@ -76,7 +76,7 @@ class Handler
protected function terminateApplicationImmediately($message = '')
{
echo $message;
die();
die(1);
}
/**

View File

@ -61,10 +61,10 @@ class HandlerTest extends TestCase
/** @var Handler|Mock $handler */
$handler = $this->getMockBuilder(Handler::class)
->setMethods(['die'])
->setMethods(['terminateApplicationImmediately'])
->getMock();
$handler->expects($this->once())
->method('die');
->method('terminateApplicationImmediately');
$handler->setHandler(Handler::ENV_PRODUCTION, $handlerMock);