diff --git a/CHANGELOG.md b/CHANGELOG.md index f0e9ffab..53030c63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). ### Removed +- Remove `Document::getAllSelectors()` (#561) - Remove `DeclarationBlock::getSelector()` (#559) - Remove `DeclarationBlock::setSelector()` (#560) - Drop support for PHP < 7.2 (#420) diff --git a/src/CSSList/Document.php b/src/CSSList/Document.php index bad99831..917186b4 100644 --- a/src/CSSList/Document.php +++ b/src/CSSList/Document.php @@ -50,18 +50,6 @@ public function getAllDeclarationBlocks() return $aResult; } - /** - * Gets all `DeclarationBlock` objects recursively. - * - * @return array - * - * @deprecated will be removed in version 9.0; use `getAllDeclarationBlocks()` instead - */ - public function getAllSelectors() - { - return $this->getAllDeclarationBlocks(); - } - /** * Returns all `RuleSet` objects recursively found in the tree, no matter how deeply nested the rule sets are. *