Skip to content

Commit

Permalink
fix line of code that was inadvertently removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Sandler committed Oct 22, 2019
1 parent 06884b2 commit 4ff3aae
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Parser/ExpressionParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,7 @@ public function build(): Expression {
$next !== null &&
(
($next['type'] === TokenType::OPERATOR && Str\uppercase($next['value']) === Operator::IN) ||
($next['type'] === TokenType::OPERATOR && Str\uppercase($next['value']) === Operator::LIKE) ||
$next['type'] === TokenType::PAREN
)
) {
Expand Down

0 comments on commit 4ff3aae

Please sign in to comment.