-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
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
assertCount with remembered values causing false positives #208
Comments
|
Same here at version I solved temporarly by creating a variable, and using it in the Count function : // Before :
self::assertCount(1, $this->getDataFromDatabase());
// After :
$newData = $this->getDataFromDatabase();
self::assertCount(1, $newData); |
Just upgraded to PHPStan v2.11.1 and got this issue. |
@thePanz Your problem probably stems from a much smarter type narrowing when You can either:
Detailed here: https://phpstan.org/blog/remembering-and-forgetting-returned-values Also I talk about it for 10 minutes here: https://www.youtube.com/watch?v=AFjr3RlDOZQ&t=1728s |
As this isn't specific to PHPUnit either, @janedbal please re-report this in PHPStan: https://phpstan.org/r/b610c6cb-c572-49b1-a78c-1a1ad5bd9100 |
Does that actually make sense? It works when properly annotated. I believe the problem is more about DX. Nobody wants to mark all similar methods with |
I'm not sure what you're suggesting. As I'm describing the recording of my talk, these defaults make sense to me. If you don't want to use |
Simplified reproducible example:
This poped up while upgrading phpstan-phpunit from
1.3.15
to1.4.0
The text was updated successfully, but these errors were encountered: