Passed
Pull Request — master (#417)
by
unknown
02:56
created
tests/benchmarks/UtfStringBench.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     {
27 27
         $str1 = new UtfString($this->testContents);
28 28
         for ($i = 0; $i < $str1->length(); $i++) {
29
-            $str1[$i];// Make offset offsetGet work
29
+            $str1[$i]; // Make offset offsetGet work
30 30
         }
31 31
     }
32 32
 
Please login to merge, or discard this patch.
src/Components/GroupKeyword.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
                 ) {
97 97
                     $expr->type = $token->keyword;
98 98
                 } elseif (($token->type === Token::TYPE_OPERATOR) && ($token->value === ',')) {
99
-                    if (! empty($expr->expr)) {
99
+                    if (!empty($expr->expr)) {
100 100
                         $ret[] = $expr;
101 101
                     }
102 102
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
         }
118 118
 
119 119
         // Last iteration was not processed.
120
-        if (! empty($expr->expr)) {
120
+        if (!empty($expr->expr)) {
121 121
             $ret[] = $expr;
122 122
         }
123 123
 
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
     {
137 137
         if (is_array($component)) {
138 138
             $withRollup = false;
139
-            $expressions = array_map(static function ($component) use (&$withRollup) {
139
+            $expressions = array_map(static function($component) use (&$withRollup) {
140 140
                 $withRollup = $component->withRollup;
141 141
                 return trim((string) $component->expr);
142 142
             }, $component);
Please login to merge, or discard this patch.