Skip to content

Commit

Permalink
Remove a bad rule from Inflector->pluralize(). Caused issues with wor…
Browse files Browse the repository at this point in the history
…ds ending in "ies".
  • Loading branch information
griffbrad committed Jan 22, 2015
1 parent 9975b76 commit cf1f7cf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Dewdrop/Inflector.php
Expand Up @@ -40,7 +40,6 @@ public function pluralize($word)
'/([m|l])ouse$/i' => '\1ice',
'/(matr|vert|ind)ix|ex$/i' => '\1ices',
'/(x|ch|ss|sh)$/i' => '\1es',
'/([^aeiouy]|qu)ies$/i' => '\1y',
'/([^aeiouy]|qu)y$/i' => '\1ies',
'/(hive)$/i' => '\1s',
'/(?:([^f])fe|([lr])f)$/i' => '\1\2ves',
Expand Down

0 comments on commit cf1f7cf

Please sign in to comment.