We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
With Process.stub intact:
Process.stub
foreach ( $process as $type => $buffer ) { \PHPStan\dumpType($type); // mixed \PHPStan\dumpType($buffer); // mixed }
Same for $process->getIterator().
$process->getIterator()
If I change the class name in the stub, so it doesn't do anything, both $type and $buffer are string.
$type
$buffer
string
Maybe because symfony's Process already does correct annotations? In the class phpdoc and getIterator() phpdoc.
Process
getIterator()
I'm okay with a local hack. How do I fix my Process generator?
The text was updated successfully, but these errors were encountered:
This should fix it: 270c2ee
Please try it out in the latest 1.4.11 release.
Sorry, something went wrong.
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.
No branches or pull requests
With
Process.stub
intact:Same for
$process->getIterator()
.If I change the class name in the stub, so it doesn't do anything, both
$type
and$buffer
arestring
.Maybe because symfony's
Process
already does correct annotations? In the class phpdoc andgetIterator()
phpdoc.I'm okay with a local hack. How do I fix my Process generator?
The text was updated successfully, but these errors were encountered: