Convert a word in to the format for a Doctrine class name. Converts 'table_name' to 'TableName'
string $word Word to classify:
string $word Classified word
public static function classify($word) {
return str_replace(" ", "", ucwords(strtr($word, "_-", " ")));
}