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
Version: 4.0.6
When I use a trait method in a class by use as, the trait will use the full name.
d.php
<?php use A\B\C class D { use C { C::abc as acd; } }
<?php $php = PhpFile::fromCode(file_get_contents('d.php')); (new PsrPrinter())->printFile($php);
<?php use A\B\C class D { use C { \A\B\C::abc as acd; } }
... Only if you have suggestions on a fix for the bug
The text was updated successfully, but these errors were encountered:
de1843f
No branches or pull requests
Version: 4.0.6
Bug Description
When I use a trait method in a class by use as, the trait will use the full name.
Steps To Reproduce
d.php
Expected Behavior
Possible Solution
... Only if you have suggestions on a fix for the bug
The text was updated successfully, but these errors were encountered: