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