-
-
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
stream_socket_client
reference arguments’ type are ignored
#12622
Comments
This isn't sufficient, we also need |
Hm I don’t quite get |
functionMap describes the types of parameters and return types. For by-ref parameters, it describes the expected type of argument for a function call.
Also see: https://phpstan.org/user-guide/troubleshooting-types#internal-stubs PHPStan needs to know precise parameter and return types of built-in PHP functions and those coming from loaded PHP extensions. There are four separate sources for that:
The way these are combined together to offer the full picture is a very complex logic and subject to frequent change as bugs are getting fixed and improvements made. |
Hm in #8294 (reply in thread) I read that
And I can see Is the fix still to update PHPStan stubs? I guess |
That's the case for userland functions. Not for built-in ones. I don't want to turn on that behaviour globally because there might be functions for which this isn't true. Please just stick to contributing the stub as I originally suggested. |
Bug report
Using PHPStan 2.1.5 with PHP 8.3.16 and calling
stream_socket_client
,$error_code
and$error_message
’s type will be ignored.This is weird since they’ve been added by phpstan/phpstan-src#2519.
Code snippet that reproduces the problem
https://phpstan.org/r/2e674df1-652e-41a4-96a3-f8c10d259ceb
Expected output
No errors!
The text was updated successfully, but these errors were encountered: