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
Example: https://psalm.dev/r/69f34fdc0f
I expected to see MissingConstructor error.
The text was updated successfully, but these errors were encountered:
I found these snippets:
<?php class Base { private mixed $data; public function doSomething():void { if ($this->data) { StoreData::store($this->data); } } }
Psalm output (using commit 3c90054): ERROR: UndefinedClass - 10:13 - Class, interface or enum named StoreData does not exist
Sorry, something went wrong.
Report MissingConstructor for natively typed mixed properties
MissingConstructor
ca9a12d
Fixes vimeo#10589
Successfully merging a pull request may close this issue.
Example: https://psalm.dev/r/69f34fdc0f
I expected to see MissingConstructor error.
The text was updated successfully, but these errors were encountered: