Skip to content

Commit

Permalink
Merge pull request #43 from rhyd42/master-1
Browse files Browse the repository at this point in the history
Replaced Token ArrayAccess in ConcatWs.php
  • Loading branch information
Chris53897 authored Sep 1, 2023
2 parents f6202d2 + 09b6cec commit b6943c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Query/Mysql/ConcatWs.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function parse(Parser $parser): void
$parser->match(Lexer::T_COMMA);
$peek = $lexer->glimpse();

$this->values[] = $peek['value'] == '('
$this->values[] = $peek->value == '('
? $parser->FunctionDeclaration()
: $parser->ArithmeticExpression();
}
Expand Down

0 comments on commit b6943c7

Please sign in to comment.