From 811c8942f91f6afecc94ce90699e52cc6fe255a6 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 11 Feb 2025 03:31:15 +0100 Subject: [PATCH] [TASK] Mark `OutputFormat::nextLevel()` as `@internal` This method is used internally for rendering the CSS, and it is not intended to be called from outside this library. This is the V8.x backport of #901. --- CHANGELOG.md | 1 + src/OutputFormat.php | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eda84e0..08eb305a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). ### Changed +- Mark `OutputFormat::nextLevel()` as `@internal` (#901) - Make all non-private properties `@internal` (#886) ### Deprecated diff --git a/src/OutputFormat.php b/src/OutputFormat.php index 2101c31f..0d194265 100644 --- a/src/OutputFormat.php +++ b/src/OutputFormat.php @@ -339,6 +339,8 @@ public function indentWithSpaces($iNumber = 2) /** * @return OutputFormat + * + * @internal since V8.8.0 */ public function nextLevel() {