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.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Components/JoinKeyword.php b/src/Components/JoinKeyword.php
index 529763b..28756ab 100644
--- a/src/Components/JoinKeyword.php
+++ b/src/Components/JoinKeyword.php
@@ -160,7 +160,7 @@ class JoinKeyword extends Component
$ret = array();
foreach ($component as $c) {
$ret[] = (($c->type === 'JOIN') ? 'JOIN ' : ($c->type . ' JOIN '))
- . $c->expr . ' ON ' . Condition::build($c->on);
+ . $c->expr . ' ON ' . Condition::build($c->on);
}
return implode(' ', $ret);
}