Closed odan closed 6 years ago
Sorry that the issue was missed by me.
Regarding your questions : All are BC breaks. Also there will be no longer another version of this library. Please see https://github.com/atlasphp or newer versions, if you are interested.
Okay, good to know. You should let others know that this library is no longer actively maintained.
@odan The library is maintained, but we cannot make BC breaks without releasing a major version. Your issue might better be targeted against the 3.x branch.
Hi!
I have an issue with PHPStan in combination with the where method and the variable-length argument lists.
Example code:
PHPStan output:
The same issue with scrutinizer-ci:
The current signature of the
where
method in theWhereInterface
is defined like this:PHP has support for variable-length argument lists in user-defined functions. This is implemented using the
...
token in PHP 5.6 and later.Possible fix:
...
token to allwhere
methods?