Passed
Push — master ( a9cd16...8fddb4 )
by William
03:49 queued 40s
created
src/Parser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -489,7 +489,7 @@  discard block
 block discarded – undo
489 489
             } else {
490 490
                 // Checking if it is a known statement that can be parsed.
491 491
                 if (empty(static::$STATEMENT_PARSERS[$token->keyword])) {
492
-                    if (! isset(static::$STATEMENT_PARSERS[$token->keyword])) {
492
+                    if (!isset(static::$STATEMENT_PARSERS[$token->keyword])) {
493 493
                         // A statement is considered recognized if the parser
494 494
                         // is aware that it is a statement, but it does not have
495 495
                         // a parser for it yet.
@@ -530,7 +530,7 @@  discard block
 block discarded – undo
530 530
 
531 531
             // Handles unions.
532 532
             if (
533
-                ! empty($unionType)
533
+                !empty($unionType)
534 534
                 && ($lastStatement instanceof SelectStatement)
535 535
                 && ($statement instanceof SelectStatement)
536 536
             ) {
Please login to merge, or discard this patch.