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
An example
<?php namespace Acme { class MyClass {} /** * @Annotation(MyClass::class) */ class MyUse {} } namespace Acme2 { use Acme\MyClass; /** * @Annotation(MyClass::class) */ class OtherUse {} }
When I try to use 'find usage' on MyClass, it won't find MyUse and it will find only use Acme\MyClass;
use Acme\MyClass;
Is there a chance that 'find usage' would see MyClass::class in annotations?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
An example
When I try to use 'find usage' on MyClass, it won't find MyUse and it will find only
use Acme\MyClass;
Is there a chance that 'find usage' would see MyClass::class in annotations?
The text was updated successfully, but these errors were encountered: