From df1d35cc370e743dedf903c2d33270d5f1d61976 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Thu, 27 Feb 2025 12:23:32 +0100 Subject: [PATCH] [TASK] Make the `Settings` properties `private` --- src/Settings.php | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/Settings.php b/src/Settings.php index 965f430a..a26d10e9 100644 --- a/src/Settings.php +++ b/src/Settings.php @@ -18,28 +18,22 @@ class Settings * and `mb_strpos` functions. Otherwise, the normal (ASCII-Only) functions will be used. * * @var bool - * - * @internal since 8.8.0, will be made private in 9.0.0 */ - public $multibyteSupport; + private $multibyteSupport; /** * The default charset for the CSS if no `@charset` declaration is found. Defaults to utf-8. * * @var non-empty-string - * - * @internal since 8.8.0, will be made private in 9.0.0 */ - public $defaultCharset = 'utf-8'; + private $defaultCharset = 'utf-8'; /** * Whether the parser silently ignore invalid rules instead of choking on them. * * @var bool - * - * @internal since 8.8.0, will be made private in 9.0.0 */ - public $lenientParsing = true; + private $lenientParsing = true; private function __construct() {