We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3adf389 commit 218aae9Copy full SHA for 218aae9
src/Lexer.php
@@ -872,7 +872,7 @@ public function parseSymbol()
872
$flags |= Token::FLAG_SYMBOL_SYSTEM;
873
}
874
} elseif ($flags & Token::FLAG_SYMBOL_PARAMETER) {
875
- if ('?' !== $token && $this->last + 1 < $this->len) {
+ if ($token !== '?' && $this->last + 1 < $this->len) {
876
++$this->last;
877
878
} else {
0 commit comments