1
0
mirror of synced 2024-12-05 03:06:05 +03:00

getSqlDeclaration -> getSQLDeclaration

Fixed inconsistent use of getSQLDeclaration method
This commit is contained in:
Wilt 2015-03-11 14:05:36 +01:00
parent cfc7236599
commit ea70e080c2

View File

@ -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';
}