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
234234
235235 /**
236236 * @param string $sString
237- * @param bool $bCaseInsensitive
237+ * @param bool $caseInsensitive
238238 */
239- public function comes ($ sString , $ bCaseInsensitive = false ): bool
239+ public function comes ($ sString , $ caseInsensitive = false ): bool
240240 {
241241 $ sPeek = $ this ->peek (\strlen ($ sString ));
242242 return ($ sPeek == '' )
243243 ? false
244- : $ this ->streql ($ sPeek , $ sString , $ bCaseInsensitive );
244+ : $ this ->streql ($ sPeek , $ sString , $ caseInsensitive );
245245 }
246246
247247 /**
@@ -392,11 +392,11 @@ private function inputLeft(): string
392392 /**
393393 * @param string $sString1
394394 * @param string $sString2
395- * @param bool $bCaseInsensitive
395+ * @param bool $caseInsensitive
396396 */
397- public function streql ($ sString1 , $ sString2 , $ bCaseInsensitive = true ): bool
397+ public function streql ($ sString1 , $ sString2 , $ caseInsensitive = true ): bool
398398 {
399- if ($ bCaseInsensitive ) {
399+ if ($ caseInsensitive ) {
400400 return $ this ->strtolower ($ sString1 ) === $ this ->strtolower ($ sString2 );
401401 } else {
402402 return $ sString1 === $ sString2 ;
You can’t perform that action at this time.
0 commit comments