X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/symfony/string/Inflector
home
/
prisjneg
/
public_html
/
vendor
/
symfony
/
string
/
Inflector
/
📁
..
📄
EnglishInflector.php
(16.89 KB)
📄
FrenchInflector.php
(5.82 KB)
📄
InflectorInterface.php
(835 B)
📄
SpanishInflector.php
(3.52 KB)
Editing: InflectorInterface.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\String\Inflector; interface InflectorInterface { /** * Returns the singular forms of a string. * * If the method can't determine the form with certainty, several possible singulars are returned. * * @return string[] */ public function singularize(string $plural): array; /** * Returns the plural forms of a string. * * If the method can't determine the form with certainty, several possible plurals are returned. * * @return string[] */ public function pluralize(string $singular): array; }
Upload File
Create Folder