Skip to content

Commit

Permalink
Merge pull request #29 from Bilge/patch-1
Browse files Browse the repository at this point in the history
Change unnecessary double quotes to single quotes
  • Loading branch information
Ocramius committed Jul 22, 2017
2 parents 8108934 + f47f9a0 commit e11d84c
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 @@ -269,7 +269,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 e11d84c

Please sign in to comment.