From b61536758f0a6326db159205b8f99107873a10a1 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Thu, 6 Mar 2025 15:10:56 +0100 Subject: [PATCH] [CLEANUP] Avoid Hungarian notation for `useUrl` Part of #756 --- src/Value/URL.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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(')'); }