Commit 807e2292 authored by Guilherme Blanco's avatar Guilherme Blanco

Merge pull request #181 from stof/fix_method_name

Fixed a typo in a method name
parents 43191656 3f5fda98
......@@ -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