⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.112
Server IP:
65.21.180.239
Server:
Linux gowhm.eplangoweb.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.0.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
eplangoweb
/
www
/
vendor
/
symfony
/
inflector
/
View File Name :
Inflector.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\Inflector; use Symfony\Component\String\Inflector\EnglishInflector; trigger_deprecation('symfony/inflector', '5.1', 'The "%s" class is deprecated, use "%s" instead.', Inflector::class, EnglishInflector::class); /** * Converts words between singular and plural forms. * * @author Bernhard Schussek <bschussek@gmail.com> * * @deprecated since Symfony 5.1, use Symfony\Component\String\Inflector\EnglishInflector instead. */ final class Inflector { private static $englishInflector; /** * This class should not be instantiated. */ private function __construct() { } /** * Returns the singular form of a word. * * If the method can't determine the form with certainty, an array of the * possible singulars is returned. * * @param string $plural A word in plural form * * @return string|array */ public static function singularize(string $plural) { if (1 === \count($singulars = self::getEnglishInflector()->singularize($plural))) { return $singulars[0]; } return $singulars; } /** * Returns the plural form of a word. * * If the method can't determine the form with certainty, an array of the * possible plurals is returned. * * @param string $singular A word in singular form * * @return string|array */ public static function pluralize(string $singular) { if (1 === \count($plurals = self::getEnglishInflector()->pluralize($singular))) { return $plurals[0]; } return $plurals; } private static function getEnglishInflector(): EnglishInflector { if (!self::$englishInflector) { self::$englishInflector = new EnglishInflector(); } return self::$englishInflector; } }