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
- Only allow ` string ` for some ` OutputFormat ` properties (#885 )
25
26
- Make all non-private properties ` @internal ` (#886 )
26
27
- Use more native type declarations and strict mode
Original file line number Diff line number Diff line change @@ -795,11 +795,15 @@ public function beLenient(): void
795
795
$ this ->bIgnoreExceptions = true ;
796
796
}
797
797
798
+ /**
799
+ * @internal since 8.8.0
800
+ */
798
801
public function getFormatter (): OutputFormatter
799
802
{
800
803
if ($ this ->oFormatter === null ) {
801
804
$ this ->oFormatter = new OutputFormatter ($ this );
802
805
}
806
+
803
807
return $ this ->oFormatter ;
804
808
}
805
809
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