Commit 1f08072e authored by Wilt's avatar Wilt

getSqlDeclaration -> getSQLDeclaration

Fixed inconsistent use of getSQLDeclaration method
parent 60558b28
...@@ -820,7 +820,7 @@ Now we implement our ``Doctrine\DBAL\Types\Type`` instance: ...@@ -820,7 +820,7 @@ Now we implement our ``Doctrine\DBAL\Types\Type`` instance:
{ {
const MONEY = 'money'; // modify to match your type name 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'; return 'MyMoney';
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment