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