File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -234,14 +234,14 @@ public function consumeWhiteSpace(): array
234
234
235
235
/**
236
236
* @param string $sString
237
- * @param bool $bCaseInsensitive
237
+ * @param bool $caseInsensitive
238
238
*/
239
- public function comes ($ sString , $ bCaseInsensitive = false ): bool
239
+ public function comes ($ sString , $ caseInsensitive = false ): bool
240
240
{
241
241
$ sPeek = $ this ->peek (\strlen ($ sString ));
242
242
return ($ sPeek == '' )
243
243
? false
244
- : $ this ->streql ($ sPeek , $ sString , $ bCaseInsensitive );
244
+ : $ this ->streql ($ sPeek , $ sString , $ caseInsensitive );
245
245
}
246
246
247
247
/**
@@ -392,11 +392,11 @@ private function inputLeft(): string
392
392
/**
393
393
* @param string $sString1
394
394
* @param string $sString2
395
- * @param bool $bCaseInsensitive
395
+ * @param bool $caseInsensitive
396
396
*/
397
- public function streql ($ sString1 , $ sString2 , $ bCaseInsensitive = true ): bool
397
+ public function streql ($ sString1 , $ sString2 , $ caseInsensitive = true ): bool
398
398
{
399
- if ($ bCaseInsensitive ) {
399
+ if ($ caseInsensitive ) {
400
400
return $ this ->strtolower ($ sString1 ) === $ this ->strtolower ($ sString2 );
401
401
} else {
402
402
return $ sString1 === $ sString2 ;
You can’t perform that action at this time.
0 commit comments