From d22f426f9aa5992d9395b1109ee2591e601e74d1 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 4 Mar 2025 09:21:53 +0100 Subject: [PATCH] [BUGFIX] Fix a type annotation in `RuleSet` This is the V8.x backport of #1051. --- src/RuleSet/RuleSet.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/RuleSet/RuleSet.php b/src/RuleSet/RuleSet.php index bc87856b..c01b68b8 100644 --- a/src/RuleSet/RuleSet.php +++ b/src/RuleSet/RuleSet.php @@ -23,7 +23,10 @@ abstract class RuleSet implements Renderable, Commentable { /** - * @var array + * the rules in this rule set, using the property name as the key, + * with potentially multiple rules per property name. + * + * @var array, Rule>> */ private $aRules;