Completed
Push — master ( 1a3a48...6e0e69 )
by Alessandro
09:39 queued 07:07
created
src/Paraunit/Lifecycle/ProcessEvent.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\Lifecycle;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/File/Cleaner.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\File;
5 5
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public static function cleanUpDir(string $dir): bool
49 49
     {
50
-        if (! file_exists($dir)) {
50
+        if ( ! file_exists($dir)) {
51 51
             return false;
52 52
         }
53 53
 
Please login to merge, or discard this patch.
src/Paraunit/Coverage/CoverageFetcher.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\Coverage;
5 5
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
     private function coverageFileIsValid(string $tempFilename): bool
55 55
     {
56
-        if (! file_exists($tempFilename)) {
56
+        if ( ! file_exists($tempFilename)) {
57 57
             return false;
58 58
         }
59 59
 
Please login to merge, or discard this patch.
src/Paraunit/Coverage/Processor/Xml.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\Coverage\Processor;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/Coverage/CoverageMerger.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\Coverage;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/Configuration/PHPUnitOption.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\Configuration;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/Parser/JSON/UnknownResultParser.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\Parser\JSON;
5 5
 
Please login to merge, or discard this patch.
src/Paraunit/Parser/JSON/GenericParser.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
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
     protected function logMatches(\stdClass $log): bool
64 64
     {
65
-        if (! property_exists($log, 'status')) {
65
+        if ( ! property_exists($log, 'status')) {
66 66
             return false;
67 67
         }
68 68
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
             return true;
75 75
         }
76 76
 
77
-        if (! property_exists($log, 'message')) {
77
+        if ( ! property_exists($log, 'message')) {
78 78
             return false;
79 79
         }
80 80
 
Please login to merge, or discard this patch.
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.