From 1b850fbb2358c2f87b5ab860a5588e9c22d47c45 Mon Sep 17 00:00:00 2001 From: Stefano Torresi Date: Tue, 17 Mar 2015 18:16:47 +0100 Subject: [PATCH] add missing return statement --- tests/Doctrine/Tests/DbalTypes/CustomIdObjectType.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/Doctrine/Tests/DbalTypes/CustomIdObjectType.php b/tests/Doctrine/Tests/DbalTypes/CustomIdObjectType.php index c24c11354..ff7bcd6fa 100644 --- a/tests/Doctrine/Tests/DbalTypes/CustomIdObjectType.php +++ b/tests/Doctrine/Tests/DbalTypes/CustomIdObjectType.php @@ -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); } /**