diff --git a/docs/en/cookbook/advanced-field-value-conversion-using-custom-mapping-types.rst b/docs/en/cookbook/advanced-field-value-conversion-using-custom-mapping-types.rst index e3884915c..5bbd2a3b1 100644 --- a/docs/en/cookbook/advanced-field-value-conversion-using-custom-mapping-types.rst +++ b/docs/en/cookbook/advanced-field-value-conversion-using-custom-mapping-types.rst @@ -150,7 +150,7 @@ Now we're going to create the ``point`` type and implement all required methods. return self::POINT; } - public function getSqlDeclaration(array $fieldDeclaration, AbstractPlatform $platform) + public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) { return 'POINT'; } 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. } diff --git a/docs/en/cookbook/mysql-enums.rst b/docs/en/cookbook/mysql-enums.rst index 69f0a351b..fcc04517b 100644 --- a/docs/en/cookbook/mysql-enums.rst +++ b/docs/en/cookbook/mysql-enums.rst @@ -96,7 +96,7 @@ For example for the previous enum type: const STATUS_VISIBLE = 'visible'; const STATUS_INVISIBLE = 'invisible'; - public function getSqlDeclaration(array $fieldDeclaration, AbstractPlatform $platform) + public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) { return "ENUM('visible', 'invisible') COMMENT '(DC2Type:enumvisibility)'"; } @@ -148,7 +148,7 @@ You can generalize this approach easily to create a base class for enums: protected $name; protected $values = array(); - public function getSqlDeclaration(array $fieldDeclaration, AbstractPlatform $platform) + public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform) { $values = array_map(function($val) { return "'".$val."'"; }, $this->values);