You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What seems to be happening is PHPStan thinks the type of $result is a union of all possible types for the array values in the ResultCache type. But this seems like it should not be because I specified that the supplied closure returns the type ResultCache[K] where K is one of key-of<ResultCache>.
Is this a bug in PHPStan? Or am I just doing generics wrong?
Bug report
I'm attempting to implement a class that has caching for the method's return values.
For example, given a class
Cat
that has three methods:count_descendants(): int
is_hungry(): bool
get_name(): string
I have a private
$result_cache
class member variable which is typed as follows:There is a
get_cached_result
method which is used as follows:And finally the
get_cached_result
method itself is implemented as follows:The problem is on this line:
PHPStan is flagging this as an error saying that
$result
is:Which does not match the type of
$result_cache
which is (as shown above):What seems to be happening is PHPStan thinks the type of
$result
is a union of all possible types for the array values in theResultCache
type. But this seems like it should not be because I specified that the supplied closure returns the typeResultCache[K]
whereK
is one ofkey-of<ResultCache>
.Is this a bug in PHPStan? Or am I just doing generics wrong?
Code snippet that reproduces the problem
https://phpstan.org/r/b203ec8c-2d70-469c-b24f-9e7143cff72d
Expected output
I believe this is a false positive. No error should have been detected.
Did PHPStan help you today? Did it make you happy in any way?
No response
The text was updated successfully, but these errors were encountered: