You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.5 KiB
71 lines
1.5 KiB
<?php |
|
|
|
declare(strict_types=1); |
|
|
|
/** |
|
* This file is part of Nexus CS Config. |
|
* |
|
* (c) 2020 John Paul E. Balandan, CPA <paulbalandan@gmail.com> |
|
* |
|
* For the full copyright and license information, please view |
|
* the LICENSE file that was distributed with this source code. |
|
*/ |
|
|
|
namespace Nexus\CsConfig\Ruleset; |
|
|
|
abstract class AbstractRuleset implements RulesetInterface |
|
{ |
|
/** |
|
* Name of the ruleset. |
|
*/ |
|
protected string $name = ''; |
|
|
|
/** |
|
* Rules for the ruleset. |
|
* |
|
* @var array<string, array<string, bool|list<string>|string>|bool> |
|
*/ |
|
protected array $rules = []; |
|
|
|
/** |
|
* Minimum PHP version. |
|
* |
|
* @phpstan-var int<0, max> |
|
*/ |
|
protected int $requiredPHPVersion = 0; |
|
|
|
/** |
|
* Have this ruleset turn on `$isRiskyAllowed` flag? |
|
*/ |
|
protected bool $autoActivateIsRiskyAllowed = false; |
|
|
|
final public function getName(): string |
|
{ |
|
if ('' !== $this->name) { |
|
return $this->name; |
|
} |
|
|
|
if (str_contains(static::class, '\\')) { |
|
$class = str_replace('\\', '/', static::class); |
|
|
|
return basename($class); |
|
} |
|
|
|
return static::class; |
|
} |
|
|
|
final public function getRules(): array |
|
{ |
|
return $this->rules; |
|
} |
|
|
|
final public function getRequiredPHPVersion(): int |
|
{ |
|
return $this->requiredPHPVersion; |
|
} |
|
|
|
final public function willAutoActivateIsRiskyAllowed(): bool |
|
{ |
|
return $this->autoActivateIsRiskyAllowed; |
|
} |
|
}
|
|
|