File tree 3 files changed +8
-0
lines changed
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 @@ -799,11 +799,15 @@ public function beLenient(): void
799
799
$ this ->bIgnoreExceptions = true ;
800
800
}
801
801
802
+ /**
803
+ * @internal since 8.8.0
804
+ */
802
805
public function getFormatter (): OutputFormatter
803
806
{
804
807
if ($ this ->outputFormatter === null ) {
805
808
$ this ->outputFormatter = new OutputFormatter ($ this );
806
809
}
810
+
807
811
return $ this ->outputFormatter ;
808
812
}
809
813
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