-
-
Notifications
You must be signed in to change notification settings - Fork 913
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
preg_match greater than 0 #11293
Comments
@ondrejmirtes After the latest push in 1.12.x, PHPStan now reports different result with your code snippet: @@ @@
- 8: Dumped type: array{0?: string, 1?: string}
-15: Dumped type: array{string, string}
-22: Dumped type: array{0?: string, 1?: string}
-32: Dumped type: array{0?: string, 1?: string}
-41: Dumped type: array{0?: string, 1?: string}
+ 8: Dumped type: array<string>
+15: Dumped type: array<string>
+22: Dumped type: array<string>
+32: Dumped type: array<string>
+41: Dumped type: array<string> Full report
|
@ondrejmirtes After the latest push in 1.12.x, PHPStan now reports different result with your code snippet: @@ @@
- 8: Dumped type: array{0?: string, 1?: string}
-15: Dumped type: array{string, string}
-22: Dumped type: array{0?: string, 1?: string}
-32: Dumped type: array{0?: string, 1?: string}
-41: Dumped type: array{0?: string, 1?: string}
+ 8: Dumped type: array{0?: string, 1?: numeric-string}
+15: Dumped type: array{string, numeric-string}
+22: Dumped type: array{0?: string, 1?: numeric-string}
+32: Dumped type: array{0?: string, 1?: numeric-string}
+41: Dumped type: array{0?: string, 1?: numeric-string} Full report
|
@ondrejmirtes After the latest push in 1.12.x, PHPStan now reports different result with your code snippet: @@ @@
- 8: Dumped type: array{0?: string, 1?: string}
-15: Dumped type: array{string, string}
-22: Dumped type: array{0?: string, 1?: string}
-32: Dumped type: array{0?: string, 1?: string}
-41: Dumped type: array{0?: string, 1?: string}
+ 8: Dumped type: array{0?: string, 1?: non-falsy-string&numeric-string}
+15: Dumped type: array{string, non-falsy-string&numeric-string}
+22: Dumped type: array{0?: string, 1?: non-falsy-string&numeric-string}
+32: Dumped type: array{0?: string, 1?: non-falsy-string&numeric-string}
+41: Dumped type: array{0?: string, 1?: non-falsy-string&numeric-string} Full report
|
Yep, ran into this problem in a bunch of places in PocketMine: https://github.com/pmmp/PocketMine-MP/actions/runs/10665106327/job/29557785290?pr=6441 |
another example combining int-cast and smaller-then (copied from #11262) |
@staabm After the latest push in 1.12.x, PHPStan now reports different result with your code snippet: @@ @@
-17: Offset 'background_image' might not exist on array{0?: string, background_image?: string, 1?: string}.
+17: Offset 'background_image' might not exist on array{0?: string, background_image?: non-empty-string, 1?: non-empty-string}. Full report
|
Does this have to do with the issue I'm having? |
@nicholasruunu Unrelated, please open a separate discussion. |
Fixed phpstan/phpstan-src#3612 |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Bug report
All of these conditions should be understood the same way
/cc @staabm
Code snippet that reproduces the problem
https://phpstan.org/r/774080cc-2f73-49a5-a049-491d030ca831
Expected output
Same dumped type in all cases
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: