Skip to content
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

Open
MatTheCat opened this issue Feb 20, 2025 · 5 comments · May be fixed by phpstan/phpstan-src#3846
Open

stream_socket_client reference arguments’ type are ignored #12622

MatTheCat opened this issue Feb 20, 2025 · 5 comments · May be fixed by phpstan/phpstan-src#3846
Labels
Milestone

Comments

@MatTheCat
Copy link

MatTheCat commented Feb 20, 2025

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!

@ondrejmirtes
Copy link
Member

This isn't sufficient, we also need @param-out stub like this: https://github.com/phpstan/phpstan-src/blob/85ee4f990329ec0ea2160184052b2bc9950a66af/stubs/core.stub#L72

@ondrejmirtes ondrejmirtes added this to the Easy fixes milestone Feb 21, 2025
@MatTheCat
Copy link
Author

Hm I don’t quite get functionMaps purpose then; should every function in there also be included in stubs files?

@ondrejmirtes
Copy link
Member

functionMap describes the types of parameters and return types. For by-ref parameters, it describes the expected type of argument for a function call.

@param-out describes the out-type of by-ref parameter, which can be different.

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.

@MatTheCat
Copy link
Author

Hm in #8294 (reply in thread) I read that

When @param-out is not present and the parameter is by-ref, the out type is going to be same as the parameter type.

And I can see stream_socket_client’s by-ref parameters are typed in https://github.com/phpstan/php-8-stubs/blob/8b29105305d85fa440ae0bce1d4d83fcdf5b47ca/stubs/ext/standard/stream_socket_client.php

Is the fix still to update PHPStan stubs? I guess stream_socket_client wouldn’t be the only concerned function then?

@ondrejmirtes
Copy link
Member

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants