PHP 8.2.31
Preview: RectorNamingInflector.php Size: 967 B
//opt/cpanel/ea-wappspector/vendor/rector/rector/rules/Naming/RectorNamingInflector.php

<?php

declare (strict_types=1);
namespace Rector\Naming;

use RectorPrefix202411\Doctrine\Inflector\Inflector;
use RectorPrefix202411\Nette\Utils\Strings;
final class RectorNamingInflector
{
    /**
     * @readonly
     * @var \Doctrine\Inflector\Inflector
     */
    private $inflector;
    /**
     * @var string
     * @see https://regex101.com/r/VqVvke/3
     */
    private const DATA_INFO_SUFFIX_REGEX = '#^(?<prefix>.+)(?<suffix>Data|Info)$#';
    public function __construct(Inflector $inflector)
    {
        $this->inflector = $inflector;
    }
    public function singularize(string $name) : string
    {
        $matches = 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;
    }
}

Directory Contents

Dirs: 15 × Files: 2

Name Size Perms Modified Actions
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
Contract DIR
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
Guard DIR
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
Matcher DIR
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
Naming DIR
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
PhpArray DIR
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
PhpDoc DIR
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
Rector DIR
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
967 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download
5.09 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).