We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IN
Current, in order to use arrays, it has to manually change the operator to:
$builder->where( [ 'ID' => [ 'operator' => 'IN', 'value' => $array_value, ] ] )
Change it so it array is automatically detected, and the operator is set as IN when this happens:
$builder->where( [ 'ID' => $array_value, ] )
The text was updated successfully, but these errors were encountered:
From a, strictly speaking, explicit standpoint, it's made really clear what is happening, but I can see why a fix like this is nice.
Sorry, something went wrong.
No branches or pull requests
Current, in order to use arrays, it has to manually change the operator to:
Change it so it array is automatically detected, and the operator is set as IN when this happens:
The text was updated successfully, but these errors were encountered: