Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
back
/
vendor
/
friendsofphp
/
php-cs-fixer
/
src
/
RuleSet
:
RuleSets.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); /* * This file is part of PHP CS Fixer. * * (c) Fabien Potencier <fabien@symfony.com> * Dariusz RumiĆski <dariusz.ruminski@gmail.com> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\RuleSet; use PhpCsFixer\RuleSetNameValidator; use Symfony\Component\Finder\Finder; /** * Set of rule sets to be used by fixer. * * @internal * * @no-named-arguments Parameter names are not covered by the backward compatibility promise. */ final class RuleSets { /** * @var null|array<string, RuleSetDefinitionInterface> */ private static ?array $builtInSetDefinitions = null; /** * @var array<string, RuleSetDefinitionInterface> */ private static array $customRuleSetDefinitions = []; /** * @return array<string, RuleSetDefinitionInterface> */ public static function getSetDefinitions(): array { $allRuleSets = array_merge( self::getBuiltInSetDefinitions(), self::$customRuleSetDefinitions, ); uksort($allRuleSets, static fn (string $x, string $y): int => strnatcmp($x, $y)); return $allRuleSets; } /** * @return array<string, RuleSetDefinitionInterface> */ public static function getBuiltInSetDefinitions(): array { if (null === self::$builtInSetDefinitions) { self::$builtInSetDefinitions = []; $finder = Finder::create() ->files() ->in(__DIR__.'/Sets') ->exclude('Internal/') ; foreach ($finder as $file) { /** @var class-string<RuleSetDefinitionInterface> $class */ $class = 'PhpCsFixer\RuleSet\Sets\\'.$file->getBasename('.php'); /** @var RuleSetDefinitionInterface */ $set = new $class(); if (!RuleSetNameValidator::isValid($set->getName(), false)) { throw new \InvalidArgumentException(\sprintf('Rule set name invalid: %s', $set->getName())); } self::$builtInSetDefinitions[$set->getName()] = $set; } uksort(self::$builtInSetDefinitions, static fn (string $x, string $y): int => strnatcmp($x, $y)); } return self::$builtInSetDefinitions; } /** * @return list<string> */ public static function getSetDefinitionNames(): array { return array_keys(self::getSetDefinitions()); } public static function getSetDefinition(string $name): RuleSetDefinitionInterface { $definitions = self::getSetDefinitions(); if (!isset($definitions[$name])) { throw new \InvalidArgumentException(\sprintf('Set "%s" does not exist.', $name)); } return $definitions[$name]; } public static function registerCustomRuleSet(RuleSetDefinitionInterface $ruleset): void { $name = $ruleset->getName(); if (!RuleSetNameValidator::isValid($name, true)) { throw new \InvalidArgumentException('RuleSet name must begin with "@" and a letter (a-z, A-Z), and can contain only letters (a-z, A-Z), numbers, underscores, slashes, colons, dots and hyphens.'); } if (\array_key_exists($name, self::getSetDefinitions())) { throw new \InvalidArgumentException(\sprintf('Set "%s" is already defined.', $name)); } self::$customRuleSetDefinitions[$name] = $ruleset; } }