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 6d3712a commit 8273d19Copy full SHA for 8273d19
src/MartinGeorgiev/Doctrine/ORM/Query/AST/Functions/Cast.php
@@ -67,11 +67,13 @@ public function parse(Parser $parser): void
67
$nextTokenValue = DoctrineLexer::getLookaheadValue($lexer);
68
if ($nextTokenValue === '[') {
69
// Consume the '[' token
70
+ /** @phpstan-ignore-next-line */
71
$parser->match($shouldUseLexer ? Lexer::T_NONE : TokenType::T_NONE);
72
73
// Check for the closing ']' token
74
75
if ($nextTokenValue === ']') {
76
77
78
$type .= '[]';
79
}
0 commit comments