Doctrine Inflector is a small library that can perform string manipulations with regard to uppercase/lowercase and singular/plural forms of words.
11.26k
stars
137
forks
source link
Correct singularization of locaux #259
Closed
vdauchy closed 4 months ago
Currently,
echo $inflector->singularize('locaux');
returnslocau
.This pull request changes that to
local
.