File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ Please also have a look at our
21
21
22
22
### Changed
23
23
24
+ - Mark ` OutputFormatter ` as ` @internal ` (#896 )
24
25
- Mark parsing-related methods of most CSS elements as ` @internal ` (#908 )
25
26
- Mark ` OutputFormat::nextLevel() ` as ` @internal ` (#901 )
26
27
- Only allow ` string ` for some ` OutputFormat ` properties (#885 )
Original file line number Diff line number Diff line change @@ -800,11 +800,15 @@ public function beLenient(): void
800
800
$ this ->bIgnoreExceptions = true ;
801
801
}
802
802
803
+ /**
804
+ * @internal since 8.8.0
805
+ */
803
806
public function getFormatter (): OutputFormatter
804
807
{
805
808
if ($ this ->outputFormatter === null ) {
806
809
$ this ->outputFormatter = new OutputFormatter ($ this );
807
810
}
811
+
808
812
return $ this ->outputFormatter ;
809
813
}
810
814
Original file line number Diff line number Diff line change 7
7
use Sabberworm \CSS \Comment \Commentable ;
8
8
use Sabberworm \CSS \Parsing \OutputException ;
9
9
10
+ /**
11
+ * @internal since 8.8.0
12
+ */
10
13
class OutputFormatter
11
14
{
12
15
/**
You can’t perform that action at this time.
0 commit comments