Rules
1 month ago
CachedWordInflector.php
1 month ago
GenericLanguageInflectorFactory.php
1 month ago
Inflector.php
1 month ago
InflectorFactory.php
1 month ago
Language.php
1 month ago
LanguageInflectorFactory.php
1 month ago
NoopWordInflector.php
1 month ago
RulesetInflector.php
1 month ago
WordInflector.php
1 month ago
Language.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | declare (strict_types=1); |
| 4 | namespace IAWPSCOPED\Doctrine\Inflector; |
| 5 | |
| 6 | /** @internal */ |
| 7 | final class Language |
| 8 | { |
| 9 | public const ENGLISH = 'english'; |
| 10 | public const ESPERANTO = 'esperanto'; |
| 11 | public const FRENCH = 'french'; |
| 12 | public const ITALIAN = 'italian'; |
| 13 | public const NORWEGIAN_BOKMAL = 'norwegian-bokmal'; |
| 14 | public const PORTUGUESE = 'portuguese'; |
| 15 | public const SPANISH = 'spanish'; |
| 16 | public const TURKISH = 'turkish'; |
| 17 | private function __construct() |
| 18 | { |
| 19 | } |
| 20 | } |
| 21 |