Passed
Pull Request — master (#417)
by
unknown
03:35 queued 29s
created
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
 
142 142
                 return trim((string) $component->expr);
Please login to merge, or discard this patch.