@@ -96,7 +96,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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); |