File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 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 the ` OutputFormat ` constructor as ` @internal ` (#1131 )
24
25
- Mark ` OutputFormatter ` as ` @internal ` (#896 )
25
26
- Make ` Selector ` a ` Renderable ` (#1017 )
26
27
- Mark ` Selector::isValid() ` as ` @internal ` (#1037 )
@@ -35,6 +36,7 @@ Please also have a look at our
35
36
36
37
### Deprecated
37
38
39
+ - Deprecate extending ` OutputFormat ` (#1131 )
38
40
- Deprecate magic method forwarding from ` OutputFormat ` to ` OutputFormatter `
39
41
(#894 )
40
42
- Deprecate greedy calculation of selector specificity (#1018 )
Original file line number Diff line number Diff line change 4
4
5
5
namespace Sabberworm \CSS ;
6
6
7
+ /**
8
+ * Extending this class is deprecated in version 8.8.0; it will be made `final` in version 9.0.0.
9
+ */
7
10
class OutputFormat
8
11
{
9
12
/**
@@ -180,6 +183,9 @@ class OutputFormat
180
183
*/
181
184
private $ indentationLevel = 0 ;
182
185
186
+ /**
187
+ * @internal since V8.8.0. Use the factory methods `create()`, `createCompact()`, or `createPretty()` instead.
188
+ */
183
189
public function __construct () {}
184
190
185
191
/**
You can’t perform that action at this time.
0 commit comments