diff --git a/test/Double/Config/RuleSet/DummyRuleSet.php b/test/Double/Config/RuleSet/DummyRuleSet.php index aee8eb9a..fde2eaff 100644 --- a/test/Double/Config/RuleSet/DummyRuleSet.php +++ b/test/Double/Config/RuleSet/DummyRuleSet.php @@ -17,25 +17,14 @@ final class DummyRuleSet implements Config\RuleSet { - private string $name; - - /** - * @var array|bool> - */ - private array $rules; - private int $phpVersion; - /** * @param array|bool> $rules */ public function __construct( - string $name, - array $rules, - int $phpVersion, + private string $name, + private array $rules, + private int $phpVersion, ) { - $this->name = $name; - $this->rules = $rules; - $this->phpVersion = $phpVersion; } public function name(): string