1
0
mirror of synced 2025-01-18 06:21:40 +03:00

[ORM] Fix double semicolon

This commit is contained in:
Daniel Perez Pinazo 2012-08-29 13:40:36 +03:00
parent ece6a005bc
commit 5b8ead9db8

View File

@ -48,7 +48,7 @@ class IdentityFunction extends FunctionNode
$tableAlias = $sqlWalker->getSQLTableAlias($class->getTableName(), $dqlAlias);
return $tableAlias . '.' . reset($assoc['targetToSourceKeyColumns']);;
return $tableAlias . '.' . reset($assoc['targetToSourceKeyColumns']);
}
/**