Skip to content

Commit 218aae9

Browse files
committed
CS fix
1 parent 3adf389 commit 218aae9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Lexer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ public function parseSymbol()
872872
$flags |= Token::FLAG_SYMBOL_SYSTEM;
873873
}
874874
} elseif ($flags & Token::FLAG_SYMBOL_PARAMETER) {
875-
if ('?' !== $token && $this->last + 1 < $this->len) {
875+
if ($token !== '?' && $this->last + 1 < $this->len) {
876876
++$this->last;
877877
}
878878
} else {

0 commit comments

Comments
 (0)