The recent update to Laravel (version 10.47.0) introduced a new feature (#76) which has caused compatibility issues with the whereAll and whereAny methods in this package.
As a result of this update, attempting to use these methods in the application results in the following error being thrown:
Declaration of Tpetry\\PostgresqlEnhanced\\Query\\BuilderWhere::orWhereAll($column, ?string $operator, ?iterable $values): static must be compatible with Illuminate\\Database\\Query\\Builder::orWhereAll($columns, $operator = null, $value = null)
To temporarily address this issue, I have manually disabled the affected feature within the package, thus resolving the error.
I hope this issue will be fixed ASAP to ensure seamless compatibility with the latest version of Laravel. Thank you.
The recent update to Laravel (version 10.47.0) introduced a new feature (#76) which has caused compatibility issues with the whereAll and whereAny methods in this package.
As a result of this update, attempting to use these methods in the application results in the following error being thrown:
To temporarily address this issue, I have manually disabled the affected feature within the package, thus resolving the error.
I hope this issue will be fixed ASAP to ensure seamless compatibility with the latest version of Laravel. Thank you.