Completed
Push — master ( 6189d0...6e59d5 )
by Alessandro
06:49
created
src/Paraunit/Parser/JSON/TestStartParser.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Paraunit/Printer/SharkPrinter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Paraunit\Printer;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/Printer/SingleResultFormatter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Paraunit/Command/ParallelCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Paraunit\Command;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/Filter/Filter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Paraunit/Proxy/XDebugProxy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Paraunit\Proxy;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/Proxy/Coverage/FakeDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Paraunit\Proxy\Coverage;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/Bin/Paraunit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Paraunit\Bin;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/TestResult/TestResultFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.