Passed
Pull Request — master (#386)
by
unknown
03:50
created
src/Parser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
                 $list->idx = $lastIdx;
485 485
                 // Checking if it is a known statement that can be parsed.
486 486
                 if (empty(static::$STATEMENT_PARSERS[$token->keyword])) {
487
-                    if (! isset(static::$STATEMENT_PARSERS[$token->keyword])) {
487
+                    if (!isset(static::$STATEMENT_PARSERS[$token->keyword])) {
488 488
                         // A statement is considered recognized if the parser
489 489
                         // is aware that it is a statement, but it does not have
490 490
                         // a parser for it yet.
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
 
526 526
             // Handles unions.
527 527
             if (
528
-                ! empty($unionType)
528
+                !empty($unionType)
529 529
                 && ($lastStatement instanceof SelectStatement)
530 530
                 && ($statement instanceof SelectStatement)
531 531
             ) {
Please login to merge, or discard this patch.