File Editor
Directories:
.. (Back)
Rules
Files:
CachedWordInflector.php
GenericLanguageInflectorFactory.php
Inflector.php
InflectorFactory.php
Language.php
LanguageInflectorFactory.php
NoopWordInflector.php
RulesetInflector.php
WordInflector.php
Create New File
Create
Edit File: NoopWordInflector.php
<?php declare(strict_types=1); namespace Doctrine\Inflector; class NoopWordInflector implements WordInflector { public function inflect(string $word): string { return $word; } }
Save Changes
Rename File
Rename