Passed
Push — master ( cee3e6...16d2f0 )
by William
11:48 queued 12s
created
tests/Parser/ParserLongExportsTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
         foreach ($parser->statements as $statement) {
65 65
             if ($statement instanceof TransactionStatement) {
66 66
                 foreach ($statement->statements as $transactionStatement) {
67
-                    if (! $transactionStatement instanceof SetStatement) {
67
+                    if (!$transactionStatement instanceof SetStatement) {
68 68
                         continue;
69 69
                     }
70 70
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
                 continue;
75 75
             }
76 76
 
77
-            if (! $statement instanceof SetStatement) {
77
+            if (!$statement instanceof SetStatement) {
78 78
                 continue;
79 79
             }
80 80
 
Please login to merge, or discard this patch.
src/TokensList.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
      */
142 142
     public function getPreviousOfType($type)
143 143
     {
144
-        if (! is_array($type)) {
144
+        if (!is_array($type)) {
145 145
             $type = [$type];
146 146
         }
147 147
 
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
      */
164 164
     public function getNextOfType($type)
165 165
     {
166
-        if (! is_array($type)) {
166
+        if (!is_array($type)) {
167 167
             $type = [$type];
168 168
         }
169 169
 
Please login to merge, or discard this patch.