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
@return
If return description starts from {@see, then psalm add this to type. It's wrong.
{@see
https://psalm.dev/r/9e5f61f5a0
The text was updated successfully, but these errors were encountered:
I found these snippets:
<?php /** * @return bool {@see true} when random number greater than 5 */ function go(): bool { return rand(1,10) > 5; }
Psalm output (using commit 73ebe22): ERROR: InvalidDocblock - 6:1 - Invalid type '@seetrue' in docblock for go
Sorry, something went wrong.
Fixed in #10326
No branches or pull requests
If return description starts from
{@see
, then psalm add this to type. It's wrong.https://psalm.dev/r/9e5f61f5a0
The text was updated successfully, but these errors were encountered: