Swapped places indexBy and condition in accordance with EBNF
This commit is contained in:
parent
c8bcdb4b61
commit
33888f1b08
1 changed files with 2 additions and 2 deletions
|
@ -139,7 +139,7 @@ class Join
|
|||
{
|
||||
return strtoupper($this->joinType) . ' JOIN ' . $this->join
|
||||
. ($this->alias ? ' ' . $this->alias : '')
|
||||
. ($this->condition ? ' ' . strtoupper($this->conditionType) . ' ' . $this->condition : '')
|
||||
. ($this->indexBy ? ' INDEX BY ' . $this->indexBy : '');
|
||||
. ($this->indexBy ? ' INDEX BY ' . $this->indexBy : '')
|
||||
. ($this->condition ? ' ' . strtoupper($this->conditionType) . ' ' . $this->condition : '');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue