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
- Make ` Selector ` a ` Renderable ` (#1017 )
25
26
- Mark ` Selector::isValid() ` as ` @internal ` (#1037 )
26
27
- Mark parsing-related methods of most CSS elements as ` @internal ` (#908 )
Original file line number Diff line number Diff line change @@ -751,11 +751,15 @@ public function beLenient(): void
751
751
$ this ->bIgnoreExceptions = true ;
752
752
}
753
753
754
+ /**
755
+ * @internal since 8.8.0
756
+ */
754
757
public function getFormatter (): OutputFormatter
755
758
{
756
759
if ($ this ->outputFormatter === null ) {
757
760
$ this ->outputFormatter = new OutputFormatter ($ this );
758
761
}
762
+
759
763
return $ this ->outputFormatter ;
760
764
}
761
765
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