diff --git a/src/Value/CSSString.php b/src/Value/CSSString.php index 8f87c6e1..169adc26 100644 --- a/src/Value/CSSString.php +++ b/src/Value/CSSString.php @@ -41,11 +41,11 @@ public function __construct($string, $lineNumber = 0) */ public static function parse(ParserState $parserState): CSSString { - $sBegin = $parserState->peek(); + $begin = $parserState->peek(); $sQuote = null; - if ($sBegin === "'") { + if ($begin === "'") { $sQuote = "'"; - } elseif ($sBegin === '"') { + } elseif ($begin === '"') { $sQuote = '"'; } if ($sQuote !== null) {