Skip to content

Commit

Permalink
Change unnecessary double quotes to single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilge committed Dec 1, 2015
1 parent 90b2128 commit f47f9a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Doctrine/Common/Inflector/Inflector.php
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public static function tableize($word)
*/
public static function classify($word)
{
return str_replace(" ", "", ucwords(strtr($word, "_-", " ")));
return str_replace(' ', '', ucwords(strtr($word, '_-', ' ')));
}

/**
Expand Down

0 comments on commit f47f9a0

Please sign in to comment.