Unify code style

This commit is contained in:
Jannik Zschiesche
2020-07-06 14:57:49 +02:00
parent aa182ff7c1
commit 38cb89c2bc
+1 -1
View File
@@ -600,7 +600,7 @@ class ExpressionParser
$stream->expect(Token::PUNCTUATION_TYPE, ',', 'Arguments must be separated by a comma');
// if the comma above was a trailing comma, early exit the argument parse loop
if ($stream->test(/* Token::PUNCTUATION_TYPE */ 9, ')')) {
if ($stream->test(Token::PUNCTUATION_TYPE, ')')) {
break;
}
}