summaryrefslogtreecommitdiffstats
path: root/src/Components/JoinKeyword.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Components/JoinKeyword.php')
-rw-r--r--src/Components/JoinKeyword.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Components/JoinKeyword.php b/src/Components/JoinKeyword.php
index 28756ab..ac2fa02 100644
--- a/src/Components/JoinKeyword.php
+++ b/src/Components/JoinKeyword.php
@@ -98,7 +98,6 @@ class JoinKeyword extends Component
}
for (; $list->idx < $list->count; ++$list->idx) {
-
/**
* Token parsed at this moment.
*
@@ -132,7 +131,7 @@ class JoinKeyword extends Component
if (($token->type === Token::TYPE_KEYWORD) && ($token->value === 'ON')) {
$state = 3;
}
- } else if ($state === 3) {
+ } elseif ($state === 3) {
$expr->on = Condition::parse($parser, $list);
$ret[] = $expr;
$expr = new JoinKeyword();