Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[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.
  • Loading branch information
oliverklee committed Feb 11, 2025
commit 811c8942f91f6afecc94ce90699e52cc6fe255a6
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/OutputFormat.php
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,8 @@ public function indentWithSpaces($iNumber = 2)

/**
* @return OutputFormat
*
* @internal since V8.8.0
*/
public function nextLevel()
{
Expand Down