diff --git a/src/Value/URL.php b/src/Value/URL.php index cf765034..58edb257 100644 --- a/src/Value/URL.php +++ b/src/Value/URL.php @@ -47,8 +47,8 @@ public static function parse(ParserState $parserState): URL } $identifier .= $character; } - $bUseUrl = $parserState->streql($identifier, 'url'); - if ($bUseUrl) { + $useUrl = $parserState->streql($identifier, 'url'); + if ($useUrl) { $parserState->consumeWhiteSpace(); $parserState->consume('('); } else { @@ -56,7 +56,7 @@ public static function parse(ParserState $parserState): URL } $parserState->consumeWhiteSpace(); $result = new URL(CSSString::parse($parserState), $parserState->currentLine()); - if ($bUseUrl) { + if ($useUrl) { $parserState->consumeWhiteSpace(); $parserState->consume(')'); }