Skip to content

Commit b4088fa

Browse files
committed
minor #3367 Unify code style (apfelbox)
This PR was merged into the 1.x branch. Discussion ---------- Unify code style I noticed that the code style in `ExpressionParser` changed from v1 to v3. So this PR now fixes it, that the file in v1 looks more clean. @fabpot this is a small addendum to #3363 Commits ------- 38cb89c Unify code style
2 parents aa182ff + 38cb89c commit b4088fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ExpressionParser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ public function parseArguments($namedArguments = false, $definition = false, $al
600600
$stream->expect(Token::PUNCTUATION_TYPE, ',', 'Arguments must be separated by a comma');
601601

602602
// if the comma above was a trailing comma, early exit the argument parse loop
603-
if ($stream->test(/* Token::PUNCTUATION_TYPE */ 9, ')')) {
603+
if ($stream->test(Token::PUNCTUATION_TYPE, ')')) {
604604
break;
605605
}
606606
}

0 commit comments

Comments
 (0)