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
It would be cool to see the extension for custom tags.
We have our own tags that describe Array shapes as in PhpStan:
/** * @param tuple(T1, T2, ..., Tn) $tuple * @param shape(k1:T1, k2:T2, ..., kn:Tn) $shape */
I want to make an extension for PhpStan, which through TypeNodeResolverExtension, would be able to tell what type is here.
TypeNodeResolverExtension
At the moment, the problem occurs while parsing a PhpDoc and does not reach the resolve call of TypeNodeResolverExtension.
resolve
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
It would be cool to see the extension for custom tags.
We have our own tags that describe Array shapes as in PhpStan:
Why?
I want to make an extension for PhpStan, which through
TypeNodeResolverExtension
, would be able to tell what type is here.Problem
At the moment, the problem occurs while parsing a PhpDoc and does not reach the
resolve
call ofTypeNodeResolverExtension
.The text was updated successfully, but these errors were encountered: