Skip to content

Commit

Permalink
Remove wrong comparison
Browse files Browse the repository at this point in the history
This is a remnant of when this was done with the type and the &
operator.
  • Loading branch information
greg0ire committed Apr 15, 2023
1 parent 2d3e89e commit 3e04516
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1193,7 +1193,7 @@ protected function getSelectColumnsSQL(): string
continue;
}

if (($assoc->isToMany() > 0) && $this->currentPersisterContext->handlesLimits) {
if ($assoc->isToMany() && $this->currentPersisterContext->handlesLimits) {
continue;
}

Expand Down

0 comments on commit 3e04516

Please sign in to comment.