@@ -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\Parser\JSON; |
5 | 5 | |
@@ -84,11 +84,11 @@ discard block |
||
84 | 84 | return; |
85 | 85 | } |
86 | 86 | |
87 | - if (! property_exists($logItem, 'suite')) { |
|
87 | + if ( ! property_exists($logItem, 'suite')) { |
|
88 | 88 | return; |
89 | 89 | } |
90 | 90 | |
91 | - if (! property_exists($logItem, 'test')) { |
|
91 | + if ( ! property_exists($logItem, 'test')) { |
|
92 | 92 | return; |
93 | 93 | } |
94 | 94 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Paraunit\Printer; |
5 | 5 |
@@ -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 | |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | { |
37 | 37 | $format = $singleResult->getTestResultFormat(); |
38 | 38 | |
39 | - if (! $format instanceof TestResultWithSymbolFormat) { |
|
39 | + if ( ! $format instanceof TestResultWithSymbolFormat) { |
|
40 | 40 | return ''; |
41 | 41 | } |
42 | 42 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Paraunit\Command; |
5 | 5 |
@@ -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\Filter; |
5 | 5 | |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | private function filterByString(array $aggregatedFiles, $stringFilter): array |
190 | 190 | { |
191 | 191 | if ($stringFilter !== null) { |
192 | - $aggregatedFiles = array_filter($aggregatedFiles, function ($value) use ($stringFilter) { |
|
192 | + $aggregatedFiles = array_filter($aggregatedFiles, function($value) use ($stringFilter) { |
|
193 | 193 | return stripos($value, $stringFilter) !== false; |
194 | 194 | }); |
195 | 195 | } |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Paraunit\Proxy; |
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\Proxy\Coverage; |
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\Bin; |
5 | 5 |
@@ -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\TestResult; |
5 | 5 | |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | ); |
22 | 22 | } |
23 | 23 | |
24 | - if (! property_exists($log, 'message')) { |
|
24 | + if ( ! property_exists($log, 'message')) { |
|
25 | 25 | return new MuteTestResult(); |
26 | 26 | } |
27 | 27 |