PHP 8.2.31
Preview: InflectorFactory.php Size: 1.46 KB
//opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/doctrine/inflector/lib/Doctrine/Inflector/InflectorFactory.php

<?php

declare (strict_types=1);
namespace RectorPrefix202411\Doctrine\Inflector;

use RectorPrefix202411\Doctrine\Inflector\Rules\English;
use RectorPrefix202411\Doctrine\Inflector\Rules\French;
use RectorPrefix202411\Doctrine\Inflector\Rules\NorwegianBokmal;
use RectorPrefix202411\Doctrine\Inflector\Rules\Portuguese;
use RectorPrefix202411\Doctrine\Inflector\Rules\Spanish;
use RectorPrefix202411\Doctrine\Inflector\Rules\Turkish;
use InvalidArgumentException;
use function sprintf;
final class InflectorFactory
{
    public static function create() : LanguageInflectorFactory
    {
        return self::createForLanguage(Language::ENGLISH);
    }
    public static function createForLanguage(string $language) : LanguageInflectorFactory
    {
        switch ($language) {
            case Language::ENGLISH:
                return new English\InflectorFactory();
            case Language::FRENCH:
                return new French\InflectorFactory();
            case Language::NORWEGIAN_BOKMAL:
                return new NorwegianBokmal\InflectorFactory();
            case Language::PORTUGUESE:
                return new Portuguese\InflectorFactory();
            case Language::SPANISH:
                return new Spanish\InflectorFactory();
            case Language::TURKISH:
                return new Turkish\InflectorFactory();
            default:
                throw new InvalidArgumentException(sprintf('Language "%s" is not supported.', $language));
        }
    }
}

Directory Contents

Dirs: 1 × Files: 9

Name Size Perms Modified Actions
Rules DIR
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
530 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.57 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
9.90 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.46 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
405 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download
845 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download
221 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.35 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
163 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download

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