rector/rules/Naming/RectorNamingInflector.php
Tomas Votruba f6dfd556b7 Updated Rector to commit 687f9e9de9d5b25cdef988b8572d30f21ad42ea9
687f9e9de9 Clean up PHPStan ignore error messages (#954)
2021-10-05 05:07:42 +00:00

34 lines
1.0 KiB
PHP

<?php
declare (strict_types=1);
namespace Rector\Naming;
use RectorPrefix20211005\Doctrine\Inflector\Inflector;
use RectorPrefix20211005\Nette\Utils\Strings;
final class RectorNamingInflector
{
/**
* @var string
* @see https://regex101.com/r/VqVvke/3
*/
private const DATA_INFO_SUFFIX_REGEX = '#^(?<prefix>.+)(?<suffix>Data|Info)$#';
/**
* @var \Doctrine\Inflector\Inflector
*/
private $inflector;
public function __construct(\RectorPrefix20211005\Doctrine\Inflector\Inflector $inflector)
{
$this->inflector = $inflector;
}
public function singularize(string $name) : string
{
$matches = \RectorPrefix20211005\Nette\Utils\Strings::match($name, self::DATA_INFO_SUFFIX_REGEX);
if ($matches === null) {
return $this->inflector->singularize($name);
}
$singularized = $this->inflector->singularize($matches['prefix']);
$uninflectable = $matches['suffix'];
return $singularized . $uninflectable;
}
}