@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | ) { |
118 | 118 | $expr->type = $token->keyword; |
119 | 119 | } elseif (($token->type === Token::TYPE_OPERATOR) && ($token->value === ',')) { |
120 | - if (! empty($expr->expr)) { |
|
120 | + if (!empty($expr->expr)) { |
|
121 | 121 | $ret[] = $expr; |
122 | 122 | } |
123 | 123 | |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | } |
131 | 131 | |
132 | 132 | // Last iteration was not processed. |
133 | - if (! empty($expr->expr)) { |
|
133 | + if (!empty($expr->expr)) { |
|
134 | 134 | $ret[] = $expr; |
135 | 135 | } |
136 | 136 | |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | } |
153 | 153 | |
154 | 154 | $str = $component->expr . ' '; |
155 | - if (! empty($component->nullOptions)) { |
|
155 | + if (!empty($component->nullOptions)) { |
|
156 | 156 | $str .= $component->nullOptions . ' '; |
157 | 157 | } |
158 | 158 |