Welcome To Our Shell

Mister Spy & Souheyl Bypass Shell

Current Path : /var/www/html/vendor/phootwork/lang/inflector/

Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Upload File :
Current File : /var/www/html/vendor/phootwork/lang/inflector/Inflector.php

<?php declare(strict_types=1);
/**
 * This file is part of the Phootwork package.
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 * @license MIT License
 * @copyright Thomas Gossmann
 */
namespace phootwork\lang\inflector;

/**
 * Standard replacement English pluralizer class. Based on the links below
 *
 * @link http://kuwamoto.org/2007/12/17/improved-pluralizing-in-php-actionscript-and-ror/
 * @link http://blogs.msdn.com/dmitryr/archive/2007/01/11/simple-english-noun-pluralizer-in-c.aspx
 * @link http://api.cakephp.org/view_source/inflector/
 *
 * @author paul.hanssen
 * @author Cristiano Cinotti
 */
class Inflector implements InflectorInterface {
	protected array $plural = [
		'(ind|vert)ex' => '\1ices',
		'(alumn|bacill|cact|foc|fung|nucle|radi|stimul|syllab|termin|vir)us' => '\1i',
		'(buffal|tomat)o' => '\1oes',

		'x' => 'xes',
		'ch' => 'ches',
		'sh' => 'shes',
		'ss' => 'sses',

		'ay' => 'ays',
		'ey' => 'eys',
		'iy' => 'iys',
		'oy' => 'oys',
		'uy' => 'uys',
		'y' => 'ies',

		'ao' => 'aos',
		'eo' => 'eos',
		'io' => 'ios',
		'oo' => 'oos',
		'uo' => 'uos',
		'o' => 'os',

		'us' => 'uses',

		'cis' => 'ces',
		'sis' => 'ses',
		'xis' => 'xes',

		'zoon' => 'zoa',

		'itis' => 'itis',
		'ois' => 'ois',
		'pox' => 'pox',
		'ox' => 'oxes',

		'foot' => 'feet',
		'goose' => 'geese',
		'tooth' => 'teeth',
		'quiz' => 'quizzes',
		'alias' => 'aliases',

		'alf' => 'alves',
		'elf' => 'elves',
		'olf' => 'olves',
		'arf' => 'arves',
		'nife' => 'nives',
		'life' => 'lives'
	];

	protected array $irregular = [
		'matrix' => 'matrices',
		'leaf' => 'leaves',
		'loaf' => 'loaves',
		'move' => 'moves',
		'foot' => 'feet',
		'goose' => 'geese',
		'genus' => 'genera',
		'sex' => 'sexes',
		'ox' => 'oxen',
		'child' => 'children',
		'man' => 'men',
		'tooth' => 'teeth',
		'person' => 'people',
		'wife' => 'wives',
		'mythos' => 'mythoi',
		'testis' => 'testes',
		'numen' => 'numina',
		'quiz' => 'quizzes',
		'alias' => 'aliases',
	];

	protected array $uncountable = [
		'sheep',
		'fish',
		'deer',
		'series',
		'species',
		'money',
		'rice',
		'information',
		'equipment',
		'news',
		'people',
	];

	protected array $singular;

	/**
	 * Array of words that could be ambiguously interpreted. Eg:
	 * `isPlural` method can't recognize 'menus' as plural, because it considers 'menus' as the
	 * singular of 'menuses'.
	 *
	 * @var string[]
	 */
	protected array $ambiguous = [
		'menu' => 'menus'
	];

	public function __construct() {
		// Create the $singular array
		$this->singular = array_flip($this->plural);
		$this->singular = array_slice($this->singular, 3);

		$reg = [
			'(ind|vert)ices' => '\1ex',
			'(alumn|bacill|cact|foc|fung|nucle|radi|stimul|syllab|termin|vir)i' => '\1us',
			'(buffal|tomat)oes' => '\1o'
		];

		$this->singular = array_merge($reg, $this->singular);

		// We have an ambiguity: -xes is the plural form of -x or -xis. By now, we choose -x. Words with -xis suffix
		// should be added to the $ambiguous array.
		$this->singular['xes'] = 'x';
	}

	/**
	 * Generate a plural name based on the passed in root.
	 *
	 * @param  string $root The root that needs to be pluralized (e.g. Author)
	 *
	 * @throws \InvalidArgumentException If the parameter is not a string.
	 *
	 * @return string The plural form of $root (e.g. Authors).
	 */
	public function getPluralForm(string $root): string {
		$pluralForm = $root;

		if (!in_array(strtolower($root), $this->uncountable)) {
			// This check must be run before `checkIrregularForm` call
			if (!$this->isAmbiguousPlural($root)) {
				if (null !== $replacement = $this->checkIrregularForm($root, $this->irregular)) {
					$pluralForm = $replacement;
				} elseif (null !== $replacement = $this->checkIrregularSuffix($root, $this->plural)) {
					$pluralForm = $replacement;
				} elseif (!$this->isPlural($root)) {
					// fallback to naive pluralization
					$pluralForm = $root . 's';
				}
			}
		}

		return $pluralForm;
	}

	/**
	 * Generate a singular name based on the passed in root.
	 *
	 * @param  string $root The root that needs to be pluralized (e.g. Author)
	 *
	 * @throws \InvalidArgumentException If the parameter is not a string.
	 *
	 * @return string The singular form of $root (e.g. Authors).
	 */
	public function getSingularForm(string $root): string {
		$singularForm = $root;

		if (!in_array(strtolower($root), $this->uncountable)) {
			if (null !== $replacement = $this->checkIrregularForm($root, array_flip($this->irregular))) {
				$singularForm = $replacement;
			} elseif (null !== $replacement = $this->checkIrregularSuffix($root, $this->singular)) {
				$singularForm = $replacement;
			} elseif (!$this->isSingular($root)) {
				// fallback to naive singularization
				return substr($root, 0, -1);
			}
		}

		return $singularForm;
	}

	/**
	 * Check if $root word is plural.
	 *
	 * @param string $root
	 *
	 * @return bool
	 *
	 * @psalm-suppress MixedArgumentTypeCoercion `array_keys($this->singular)` is an array of strings
	 */
	public function isPlural(string $root): bool {
		if ('' === $root) {
			return false;
		}

		if (in_array(strtolower($root), $this->uncountable) ||
			$this->isIrregular($this->irregular, $root) ||
			$this->isIrregular(array_keys($this->singular), $root) ||
			's' == $root[strlen($root) - 1]) {
			return true;
		}

		return false;
	}

	/**
	 * Check if $root word is singular.
	 *
	 * @param $root
	 *
	 * @return bool
	 *
	 * @psalm-suppress MixedArgumentTypeCoercion `array_keys($this->plural)` is an array of strings
	 */
	public function isSingular(string $root): bool {
		if ('' === $root || in_array(strtolower($root), $this->uncountable)) {
			return true;
		}

		if ($this->isAmbiguousPlural($root)) {
			return false;
		}

		if ($this->isIrregular($this->irregular, $root) ||
			$this->isIrregular(array_keys($this->plural), $root) ||
			's' !== $root[strlen($root) - 1]) {
			return true;
		}

		return false;
	}

	/**
	 * Pluralize/Singularize irregular forms.
	 *
	 * @param string $root The string to pluralize/singularize
	 * @param array $irregular Array of irregular forms
	 *
	 * @return null|string
	 */
	private function checkIrregularForm(string $root, array $irregular): ?string {
		/**
		 * @var string $pattern
		 * @var  string $result
		 */
		foreach ($irregular as $pattern => $result) {
			$searchPattern = '/' . $pattern . '$/i';
			if ($root !== $replacement = preg_replace($searchPattern, $result, $root)) {
				// look at the first char and see if it's upper case
				// I know it won't handle more than one upper case char here (but I'm OK with that)
				if (preg_match('/^[A-Z]/', $root)) {
					$replacement = ucfirst($replacement);
				}

				return $replacement;
			}
		}

		return null;
	}

	/**
	 * @param string $root
	 * @param array $irregular Array of irregular suffixes
	 *
	 * @return null|string
	 */
	private function checkIrregularSuffix(string $root, array $irregular): ?string {
		/**
		 * @var string $pattern
		 * @var  string $result
		 */
		foreach ($irregular as $pattern => $result) {
			$searchPattern = '/' . $pattern . '$/i';
			if ($root !== $replacement = preg_replace($searchPattern, $result, $root)) {
				return $replacement;
			}
		}

		return null;
	}

	/**
	 * @param $root
	 *
	 * @return bool
	 */
	private function isAmbiguousPlural(string $root): bool {
		foreach ($this->ambiguous as $pattern) {
			if (preg_match('/' . $pattern . '$/i', $root)) {
				return true;
			}
		}

		return false;
	}

	/**
	 * @param string[] $irregular
	 * @param string $root
	 *
	 * @return bool
	 */
	private function isIrregular(array $irregular, string $root): bool {
		foreach ($irregular as $pattern) {
			if (preg_match('/' . $pattern . '$/i', $root)) {
				return true;
			}
		}

		return false;
	}
}

bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped)
Email: contact@elmoujehidin.net bypass 1.0, Devloped By El Moujahidin (the source has been moved and devloped) Email: contact@elmoujehidin.net