Passed
Pull Request — master (#398)
by
unknown
02:39
created
src/Components/OrderKeyword.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.