芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/www/vendor/doctrine/inflector/lib/Doctrine/Inflector/Rules/Transformations.php
transformations = $transformations; } public function inflect(string $word) : string { foreach ($this->transformations as $transformation) { if ($transformation->getPattern()->matches($word)) { return $transformation->inflect($word); } } return $word; } }