Remove coalesce operator

Remove strict types declaration
This commit is contained in:
Tobias Lode 2017-05-29 10:38:58 +02:00
parent 21bcdf76cc
commit 66191b7088
2 changed files with 2 additions and 2 deletions

View file

@ -26,7 +26,7 @@ class RuntimeMockup extends Runtime
public function getRanCommandTimeoutFor($cmd)
{
return $this->ranCommandTimeouts[$cmd] ?? null;
return isset($this->ranCommandTimeouts[$cmd]) ? $this->ranCommandTimeouts[$cmd] : null;
}
/**

View file

@ -1,4 +1,4 @@
<?php declare(strict_types=1);
<?php
namespace Mage\tests\Task\BuiltIn\Symfony;