fixes #473
This commit is contained in:
parent
562a48769c
commit
32392d9ad1
1 changed files with 2 additions and 2 deletions
|
@ -1069,9 +1069,9 @@ final class Doctrine
|
||||||
* @param string $tablename
|
* @param string $tablename
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public static function classify($tablename)
|
public static function classify($tableName)
|
||||||
{
|
{
|
||||||
return preg_replace_callback('~(_?)(_)([\w])~', array("Doctrine", "classifyCallback"), ucfirst($tablename));
|
return preg_replace_callback('~(_?)(_)([\w])~', array("Doctrine", "classifyCallback"), ucfirst(strtolower($tableName)));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue