Commit 29f29d81 authored by Christophe Coevoet's avatar Christophe Coevoet Committed by Benjamin Eberlei

Fixed a typo in a method name

parent a880baf3
......@@ -237,7 +237,7 @@ abstract class AbstractPlatform
*
* @return string
*/
public function getGuidTypeDeclartionSQL(array $field)
public function getGuidTypeDeclarationSQL(array $field)
{
return $this->getVarcharTypeDeclarationSQL($field);
}
......
......@@ -578,7 +578,7 @@ class PostgreSqlPlatform extends AbstractPlatform
/**
* {@inheritDoc}
*/
public function getGuidTypeDeclartionSQL(array $field)
public function getGuidTypeDeclarationSQL(array $field)
{
return 'UUID';
}
......
......@@ -605,7 +605,7 @@ class SQLServerPlatform extends AbstractPlatform
/**
* {@inheritDoc}
*/
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