Commit 3f5fda98 authored by Christophe Coevoet's avatar Christophe Coevoet

Fixed a typo in a method name

parent 43191656
......@@ -229,7 +229,7 @@ abstract class AbstractPlatform
* @param array $field
* @return string
*/
public function getGuidTypeDeclartionSQL(array $field)
public function getGuidTypeDeclarationSQL(array $field)
{
return $this->getVarcharTypeDeclarationSQL($field);
}
......
......@@ -623,7 +623,7 @@ class PostgreSqlPlatform extends AbstractPlatform
* @param array $field
* @return string
*/
public function getGuidTypeDeclartionSQL(array $field)
public function getGuidTypeDeclarationSQL(array $field)
{
return 'UUID';
}
......
......@@ -611,7 +611,7 @@ class SQLServerPlatform extends AbstractPlatform
* @param array $field
* @return string
*/
public function getGuidTypeDeclartionSQL(array $field)
public function getGuidTypeDeclarationSQL(array $field)
{
return 'UNIQUEIDENTIFIER';
}
......
......@@ -31,7 +31,7 @@ class GuidType extends StringType
{
public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
{
return $platform->getGuidTypeDeclartionSQL($fieldDeclaration);
return $platform->getGuidTypeDeclarationSQL($fieldDeclaration);
}
public function getName()
......
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