We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
OutputFormat::nextLevel()
@internal
1 parent 4322d97 commit bcbdf4bCopy full SHA for bcbdf4b
CHANGELOG.md
@@ -21,6 +21,7 @@ Please also have a look at our
21
22
### Changed
23
24
+- Mark `OutputFormat::nextLevel()` as `@internal` (#901)
25
- Only allow `string` for some `OutputFormat` properties (#885)
26
- Make all non-private properties `@internal` (#886)
27
- Use more native type declarations and strict mode
src/OutputFormat.php
@@ -780,6 +780,9 @@ public function indentWithSpaces(int $numberOfSpaces = 2): self
780
return $this->setIndentation(\str_repeat(' ', $numberOfSpaces));
781
}
782
783
+ /**
784
+ * @internal since V8.8.0
785
+ */
786
public function nextLevel(): self
787
{
788
if ($this->oNextLevelFormat === null) {
0 commit comments