File tree Expand file tree Collapse file tree 3 files changed +3
-23
lines changed Expand file tree Collapse file tree 3 files changed +3
-23
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
23
23
### Removed
24
24
25
25
- Remove ` Rule::getValues() ` (#563 )
26
+ - Remove ` Rule::setValues() ` (#562 )
27
+ - Remove ` Document::getAllSelectors() ` (#561 )
28
+ - Remove ` DeclarationBlock::getSelector() ` (#559 )
26
29
- Remove ` DeclarationBlock::setSelector() ` (#560 )
27
30
- Drop support for PHP < 7.2 (#420 )
28
31
Original file line number Diff line number Diff line change @@ -50,18 +50,6 @@ public function getAllDeclarationBlocks()
50
50
return $ aResult ;
51
51
}
52
52
53
- /**
54
- * Gets all `DeclarationBlock` objects recursively.
55
- *
56
- * @return array<int, DeclarationBlock>
57
- *
58
- * @deprecated will be removed in version 9.0; use `getAllDeclarationBlocks()` instead
59
- */
60
- public function getAllSelectors ()
61
- {
62
- return $ this ->getAllDeclarationBlocks ();
63
- }
64
-
65
53
/**
66
54
* Returns all `RuleSet` objects recursively found in the tree, no matter how deeply nested the rule sets are.
67
55
*
Original file line number Diff line number Diff line change @@ -146,17 +146,6 @@ public function removeSelector($mSelector)
146
146
return false ;
147
147
}
148
148
149
- /**
150
- * @return array<int, Selector|string>
151
- *
152
- * @deprecated will be removed in version 9.0; use `getSelectors()` instead
153
- */
154
- public function getSelector ()
155
- {
156
- return $ this ->getSelectors ();
157
- }
158
-
159
-
160
149
/**
161
150
* @return array<int, Selector|string>
162
151
*/
You can’t perform that action at this time.
0 commit comments