From 1f08072edff69d56c6927bb601641e37d9beae6b Mon Sep 17 00:00:00 2001 From: Wilt Date: Wed, 11 Mar 2015 14:19:07 +0100 Subject: [PATCH] getSqlDeclaration -> getSQLDeclaration Fixed inconsistent use of getSQLDeclaration method --- docs/en/reference/types.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/reference/types.rst b/docs/en/reference/types.rst index f452d9717d4..564ac4e18c6 100644 --- a/docs/en/reference/types.rst +++ b/docs/en/reference/types.rst @@ -820,7 +820,7 @@ Now we implement our ``Doctrine\DBAL\Types\Type`` instance: { const MONEY = 'money'; // modify to match your type name - public function getSqlDeclaration(array $fieldDeclaration, AbstractPlatform $platform) + public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) { return 'MyMoney'; }