add missing return statement
This commit is contained in:
parent
2bdc1142fe
commit
1b850fbb23
1 changed files with 1 additions and 2 deletions
|
@ -30,13 +30,12 @@ class CustomIdObjectType extends Type
|
||||||
return $idObject;
|
return $idObject;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
|
public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
|
||||||
{
|
{
|
||||||
$platform->getVarcharTypeDeclarationSQL($fieldDeclaration);
|
return $platform->getVarcharTypeDeclarationSQL($fieldDeclaration);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue