1
0
mirror of synced 2024-12-05 03:06:05 +03:00

add missing return statement

This commit is contained in:
Stefano Torresi 2015-03-17 18:16:47 +01:00 committed by Marco Pivetta
parent 2bdc1142fe
commit 1b850fbb23

View File

@ -30,13 +30,12 @@ class CustomIdObjectType extends Type
return $idObject;
}
/**
* {@inheritdoc}
*/
public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
{
$platform->getVarcharTypeDeclarationSQL($fieldDeclaration);
return $platform->getVarcharTypeDeclarationSQL($fieldDeclaration);
}
/**