Commit b43a30c5 authored by Steve Müller's avatar Steve Müller

rename exception method

parent 20ea0aad
......@@ -1310,7 +1310,7 @@ class QueryBuilder
if (isset($this->sqlParts['join'][$fromAlias])) {
foreach ($this->sqlParts['join'][$fromAlias] as $join) {
if (array_key_exists($join['joinAlias'], $knownAliases)) {
throw QueryException::notUniqueAlias($join['joinAlias'], $knownAliases);
throw QueryException::nonUniqueAlias($join['joinAlias'], $knownAliases);
}
$sql .= ' ' . strtoupper($join['joinType'])
. ' JOIN ' . $join['joinTable'] . ' ' . $join['joinAlias']
......
......@@ -45,7 +45,7 @@ class QueryException extends DBALException
*
* @return \Doctrine\DBAL\Query\QueryException
*/
static public function notUniqueAlias($alias, $registeredAliases)
static public function nonUniqueAlias($alias, $registeredAliases)
{
return new self("The given alias '" . $alias . "' is not unique " .
"in FROM and JOIN clause table. The currently registered " .
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment