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
<?php declare(strict_types=1); /** * @deprecated use something else */ trait MyTrait { public function doFoo() { } } class X { use MyTrait; } $x = new X(); $x->doFoo();
I think we should see deprecation messages for every trait-method beeing called, when the trait itself is marked deprecated.
The text was updated successfully, but these errors were encountered:
btw: I noticed the playground does not trigger deprecation errors https://phpstan.org/r/6c4f49bd-a460-43a7-b793-5bd175588e70
might be helpful to add this extension to the playground
Sorry, something went wrong.
No branches or pull requests
I think we should see deprecation messages for every trait-method beeing called, when the trait itself is marked deprecated.
The text was updated successfully, but these errors were encountered: