Skip to content

Commit 571b91b

Browse files
authored
[TASK] Make the Settings properties private (#1019)
1 parent e0392d0 commit 571b91b

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

src/Settings.php

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,22 @@ class Settings
1818
* and `mb_strpos` functions. Otherwise, the normal (ASCII-Only) functions will be used.
1919
*
2020
* @var bool
21-
*
22-
* @internal since 8.8.0, will be made private in 9.0.0
2321
*/
24-
public $multibyteSupport;
22+
private $multibyteSupport;
2523

2624
/**
2725
* The default charset for the CSS if no `@charset` declaration is found. Defaults to utf-8.
2826
*
2927
* @var non-empty-string
30-
*
31-
* @internal since 8.8.0, will be made private in 9.0.0
3228
*/
33-
public $defaultCharset = 'utf-8';
29+
private $defaultCharset = 'utf-8';
3430

3531
/**
3632
* Whether the parser silently ignore invalid rules instead of choking on them.
3733
*
3834
* @var bool
39-
*
40-
* @internal since 8.8.0, will be made private in 9.0.0
4135
*/
42-
public $lenientParsing = true;
36+
private $lenientParsing = true;
4337

4438
private function __construct()
4539
{

0 commit comments

Comments
 (0)