@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Paraunit\Parser\JSON; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Paraunit\Parser\JSON; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Paraunit\Parser\JSON; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Paraunit\Parser\JSON; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Paraunit\Parser\JSON; |
5 | 5 |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | -if (! ini_get('date.timezone') && ! date_default_timezone_get()) { |
|
4 | +if ( ! ini_get('date.timezone') && ! date_default_timezone_get()) { |
|
5 | 5 | date_default_timezone_set('UTC'); |
6 | 6 | } |
7 | 7 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Paraunit\Printer; |
5 | 5 | |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | */ |
24 | 24 | private function printFileRecap(TestResultContainerInterface $testResultContainer) |
25 | 25 | { |
26 | - if (! $testResultContainer->getTestResultFormat()->shouldPrintFilesRecap()) { |
|
26 | + if ( ! $testResultContainer->getTestResultFormat()->shouldPrintFilesRecap()) { |
|
27 | 27 | return; |
28 | 28 | } |
29 | 29 |
@@ -35,7 +35,7 @@ |
||
35 | 35 | |
36 | 36 | public function execute(AbstractParaunitProcess $process) |
37 | 37 | { |
38 | - if (! $this->isFree()) { |
|
38 | + if ( ! $this->isFree()) { |
|
39 | 39 | throw new \RuntimeException('This pipeline is not free'); |
40 | 40 | } |
41 | 41 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Paraunit\Configuration; |
5 | 5 | |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | $configFile .= DIRECTORY_SEPARATOR . self::DEFAULT_FILE_NAME; |
77 | 77 | } |
78 | 78 | |
79 | - if (! is_file($configFile) || ! is_readable($configFile)) { |
|
79 | + if ( ! is_file($configFile) || ! is_readable($configFile)) { |
|
80 | 80 | throw new \InvalidArgumentException('Config file ' . $configFile . ' does not exist or is not readable'); |
81 | 81 | } |
82 | 82 |