File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/doctrine/inflector/src/Rules/Spanish
Upload
[..]
Inflectible.php (1.81 KB)
Edit
Rename
Del
InflectorFactory.php (461 B)
Edit
Rename
Del
Rules.php (874 B)
Edit
Rename
Del
Uninflected.php (615 B)
Edit
Rename
Del
Edit: Uninflected.php
<?php declare(strict_types=1); namespace Doctrine\Inflector\Rules\Spanish; use Doctrine\Inflector\Rules\Pattern; final class Uninflected { /** @return Pattern[] */ public static function getSingular(): iterable { yield from self::getDefault(); } /** @return Pattern[] */ public static function getPlural(): iterable { yield from self::getDefault(); } /** @return Pattern[] */ private static function getDefault(): iterable { yield new Pattern('lunes'); yield new Pattern('rompecabezas'); yield new Pattern('crisis'); } }
Simpan