Update file InOperator.php
Closes #3453646
Merge request reports
Activity
array_keys() is being called on a variable that is null, which is not allowed. To address this, we need to ensure that the variable being passed to array_keys() is indeed an array. This ensures that if $this->value is null, the method will return early without trying to call array_keys() on it.
Please register or sign in to reply