Completed
Pull Request — master (#87)
by Deven
126:59 queued 62:01
created
src/Statements/DeleteStatement.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
                     ++$list->idx; // Skip 'FROM'
227 227
                     $this->from = ExpressionArray::parse($parser, $list);
228 228
                     $state = 2;
229
-                }  elseif ($token->type === Token::TYPE_KEYWORD) {
229
+                } elseif ($token->type === Token::TYPE_KEYWORD) {
230 230
                     $parser->error(__('Unexpected keyword.'), $token);
231 231
                     break;
232 232
                 } else {
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
                     ++$list->idx; // Skip 'ORDER  BY'
279 279
                     $this->order = OrderKeyword::parse($parser, $list);
280 280
                     $state = 5;
281
-                }  elseif ($token->type === Token::TYPE_KEYWORD
281
+                } elseif ($token->type === Token::TYPE_KEYWORD
282 282
                     && $token->value === 'LIMIT'
283 283
                 ) {
284 284
                     ++$list->idx; // Skip 'LIMIT'
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
                     ++$list->idx; // Skip 'ORDER  BY'
299 299
                     $this->order = OrderKeyword::parse($parser, $list);
300 300
                     $state = 5;
301
-                }  elseif ($token->type === Token::TYPE_KEYWORD
301
+                } elseif ($token->type === Token::TYPE_KEYWORD
302 302
                     && $token->value === 'LIMIT'
303 303
                 ) {
304 304
                     ++$list->idx; // Skip 'LIMIT'
Please login to merge, or discard this patch.