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 @@ -750,11 +750,15 @@ public function beLenient(): void
750
750
$ this ->bIgnoreExceptions = true ;
751
751
}
752
752
753
+ /**
754
+ * @internal since 8.8.0
755
+ */
753
756
public function getFormatter (): OutputFormatter
754
757
{
755
758
if ($ this ->outputFormatter === null ) {
756
759
$ this ->outputFormatter = new OutputFormatter ($ this );
757
760
}
761
+
758
762
return $ this ->outputFormatter ;
759
763
}
760
764
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