File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -146,18 +146,18 @@ public function parseIdentifier($ignoreCase = true)
146
146
}
147
147
148
148
/**
149
- * @param bool $bIsForIdentifier
149
+ * @param bool $isForIdentifier
150
150
*
151
151
* @return string|null
152
152
*
153
153
* @throws UnexpectedEOFException
154
154
* @throws UnexpectedTokenException
155
155
*/
156
- public function parseCharacter ($ bIsForIdentifier )
156
+ public function parseCharacter ($ isForIdentifier )
157
157
{
158
158
if ($ this ->peek () === '\\' ) {
159
159
if (
160
- $ bIsForIdentifier && $ this ->parserSettings ->bLenientParsing
160
+ $ isForIdentifier && $ this ->parserSettings ->bLenientParsing
161
161
&& ($ this ->comes ('\\0 ' ) || $ this ->comes ('\\9 ' ))
162
162
) {
163
163
// Non-strings can contain \0 or \9 which is an IE hack supported in lenient parsing.
@@ -189,7 +189,7 @@ public function parseCharacter($bIsForIdentifier)
189
189
}
190
190
return \iconv ('utf-32le ' , $ this ->charset , $ sUtf32 );
191
191
}
192
- if ($ bIsForIdentifier ) {
192
+ if ($ isForIdentifier ) {
193
193
$ peek = \ord ($ this ->peek ());
194
194
// Ranges: a-z A-Z 0-9 - _
195
195
if (
You can’t perform that action at this time.
0 commit comments