From 228dc895ca153c6eef56109dc74400f6a7858e18 Mon Sep 17 00:00:00 2001 From: Wilt Date: Wed, 11 Mar 2015 14:14:29 +0100 Subject: [PATCH] getSqlDeclaration -> getSQLDeclaration Fixed inconsistent use of getSQLDeclaration method --- docs/en/cookbook/custom-mapping-types.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/cookbook/custom-mapping-types.rst b/docs/en/cookbook/custom-mapping-types.rst index 282a846b0..27ada30ee 100644 --- a/docs/en/cookbook/custom-mapping-types.rst +++ b/docs/en/cookbook/custom-mapping-types.rst @@ -24,7 +24,7 @@ you wish. Here is an example skeleton of such a custom type class: { const MYTYPE = 'mytype'; // modify to match your type name - public function getSqlDeclaration(array $fieldDeclaration, AbstractPlatform $platform) + public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) { // return the SQL used to create your column type. To create a portable column type, use the $platform. }