Skip to content

Commit 386d510

Browse files
authored
[CLEANUP] Avoid Hungarian notation for character (#1094)
Part of #756
1 parent afdb023 commit 386d510

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Value/URL.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ public static function parse(ParserState $parserState): URL
4141
$anchor = $parserState->anchor();
4242
$identifier = '';
4343
for ($i = 0; $i < 3; $i++) {
44-
$sChar = $parserState->parseCharacter(true);
45-
if ($sChar === null) {
44+
$character = $parserState->parseCharacter(true);
45+
if ($character === null) {
4646
break;
4747
}
48-
$identifier .= $sChar;
48+
$identifier .= $character;
4949
}
5050
$bUseUrl = $parserState->streql($identifier, 'url');
5151
if ($bUseUrl) {

0 commit comments

Comments
 (0)