Skip to content

Commit

Permalink
getSqlDeclaration -> getSQLDeclaration
Browse files Browse the repository at this point in the history
Fixed inconsistent use of getSqlDeclaration method name
  • Loading branch information
Wilt committed Mar 11, 2015
1 parent 6b6143b commit e6b8640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
Expand Up @@ -2206,7 +2206,7 @@ public function getColumnDeclarationSQL($name, array $field)
$check = (isset($field['check']) && $field['check']) ?
' ' . $field['check'] : '';

$typeDecl = $field['type']->getSqlDeclaration($field, $this);
$typeDecl = $field['type']->getSQLDeclaration($field, $this);
$columnDef = $typeDecl . $charset . $default . $notnull . $unique . $check . $collation;
}

Expand Down

0 comments on commit e6b8640

Please sign in to comment.