From a38389d21f3adac1f2c2c206cede42e7258cafa7 Mon Sep 17 00:00:00 2001 From: Jake Hotson Date: Mon, 21 Jul 2025 14:40:14 +0100 Subject: [PATCH] [CLEANUP] Update `RuleSet` DocBlock ... to be consistent with the class now being concrete. Missed in #1341. --- src/RuleSet/RuleSet.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/RuleSet/RuleSet.php b/src/RuleSet/RuleSet.php index e634b8797..521a6ae9b 100644 --- a/src/RuleSet/RuleSet.php +++ b/src/RuleSet/RuleSet.php @@ -24,8 +24,7 @@ * If you want to manipulate a `RuleSet`, use the methods `addRule(Rule $rule)`, `getRules()` and `removeRule($rule)` * (which accepts either a `Rule` or a rule name; optionally suffixed by a dash to remove all related rules). * - * Note that `CSSListItem` extends both `Commentable` and `Renderable`, - * so those interfaces must also be implemented by concrete subclasses. + * Note that `CSSListItem` extends both `Commentable` and `Renderable`, so those interfaces must also be implemented. */ class RuleSet implements CSSElement, CSSListItem, Positionable, RuleContainer {