From 8e013bf0c9f39ee7898bd3c9da15419a12bf5b45 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sun, 16 Feb 2025 11:59:23 +0100 Subject: [PATCH] [TASK] Drop the unused `ParserState::getCharset()` As this class is `@internal`, we do not need a deprecation process for this. --- src/Parsing/ParserState.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/Parsing/ParserState.php b/src/Parsing/ParserState.php index 46311289..9ffd65e0 100644 --- a/src/Parsing/ParserState.php +++ b/src/Parsing/ParserState.php @@ -82,16 +82,6 @@ public function setCharset($sCharset): void } } - /** - * Returns the charset that is used if the CSS does not contain an `@charset` declaration. - * - * @return string - */ - public function getCharset() - { - return $this->sCharset; - } - /** * @return int */