summaryrefslogtreecommitdiffstats
path: root/src/Components/JoinKeyword.php
diff options
context:
space:
mode:
authorDan Ungureanu <udan1107@gmail.com>2015-08-24 00:55:00 +0300
committerDan Ungureanu <udan1107@gmail.com>2015-08-24 00:55:00 +0300
commitb57f00d57d01a0de9eb2bb7ba71ddf58fd6b8a22 (patch)
tree108d8c15ddb9c20db7630364e0c93e68a09f6a07 /src/Components/JoinKeyword.php
parentfecf2b585dd03152ae0825bed9be684caff3cff2 (diff)
downloadsql-parser-b57f00d57d01a0de9eb2bb7ba71ddf58fd6b8a22.zip
sql-parser-b57f00d57d01a0de9eb2bb7ba71ddf58fd6b8a22.tar.gz
sql-parser-b57f00d57d01a0de9eb2bb7ba71ddf58fd6b8a22.tar.bz2
Fixed spacing.
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);
}