File tree 3 files changed +7
-0
lines changed
3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
11
11
12
12
### Changed
13
13
14
+ - Mark ` OutputFormatter ` as ` @internal ` (#896 )
14
15
- Mark ` Selector::isValid() ` as ` @internal ` (#1037 )
15
16
- Mark parsing-related methods of most CSS elements as ` @internal ` (#908 )
16
17
- Mark ` OutputFormat::nextLevel() ` as ` @internal ` (#901 )
Original file line number Diff line number Diff line change @@ -363,12 +363,15 @@ public function beLenient()
363
363
364
364
/**
365
365
* @return OutputFormatter
366
+ *
367
+ * @internal since 8.8.0
366
368
*/
367
369
public function getFormatter ()
368
370
{
369
371
if ($ this ->oFormatter === null ) {
370
372
$ this ->oFormatter = new OutputFormatter ($ this );
371
373
}
374
+
372
375
return $ this ->oFormatter ;
373
376
}
374
377
Original file line number Diff line number Diff line change 5
5
use Sabberworm \CSS \Comment \Commentable ;
6
6
use Sabberworm \CSS \Parsing \OutputException ;
7
7
8
+ /**
9
+ * @internal since 8.8.0
10
+ */
8
11
class OutputFormatter
9
12
{
10
13
/**
You can’t perform that action at this time.
0 commit comments