#1316 - removing useless null
check (redundant with isset()
), cs cleanups
This commit is contained in:
parent
4095bbaa92
commit
648fde8914
1 changed files with 4 additions and 1 deletions
|
@ -97,10 +97,13 @@ class DefaultQuoteStrategy implements QuoteStrategy
|
||||||
public function getJoinTableName(array $association, ClassMetadata $class, AbstractPlatform $platform)
|
public function getJoinTableName(array $association, ClassMetadata $class, AbstractPlatform $platform)
|
||||||
{
|
{
|
||||||
$schema = '';
|
$schema = '';
|
||||||
if (isset($association['joinTable']['schema']) && null !== $association['joinTable']['schema']) {
|
|
||||||
|
if (isset($association['joinTable']['schema'])) {
|
||||||
$schema = $association['joinTable']['schema'] . '.';
|
$schema = $association['joinTable']['schema'] . '.';
|
||||||
}
|
}
|
||||||
|
|
||||||
$tableName = $association['joinTable']['name'];
|
$tableName = $association['joinTable']['name'];
|
||||||
|
|
||||||
if (isset($association['joinTable']['quoted'])) {
|
if (isset($association['joinTable']['quoted'])) {
|
||||||
$tableName = $platform->quoteIdentifier($tableName);
|
$tableName = $platform->quoteIdentifier($tableName);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue