diff options
author | Dan Ungureanu <udan1107@gmail.com> | 2015-08-24 00:55:00 +0300 |
---|---|---|
committer | Dan Ungureanu <udan1107@gmail.com> | 2015-08-24 00:55:00 +0300 |
commit | b57f00d57d01a0de9eb2bb7ba71ddf58fd6b8a22 (patch) | |
tree | 108d8c15ddb9c20db7630364e0c93e68a09f6a07 /src | |
parent | fecf2b585dd03152ae0825bed9be684caff3cff2 (diff) | |
download | sql-parser-b57f00d57d01a0de9eb2bb7ba71ddf58fd6b8a22.zip sql-parser-b57f00d57d01a0de9eb2bb7ba71ddf58fd6b8a22.tar.gz sql-parser-b57f00d57d01a0de9eb2bb7ba71ddf58fd6b8a22.tar.bz2 |
Fixed spacing.
Diffstat (limited to 'src')
-rw-r--r-- | src/Components/JoinKeyword.php | 2 |
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); } |