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
When parsing multiple classes defined in a group, only the first class keeps the fully qualified namespace.
use My\Namespace\{Foo, Bar};
Will result in My\Namespace\Foo and Bar
My\Namespace\Foo
Bar
The text was updated successfully, but these errors were encountered:
Just lost an hour of my life discovering this bug as well.
Sorry, something went wrong.
phpDocumentor/TypeResolver#64
If this is fixed in TypeResolver, might just need a dep version bump... should also add a specific test case here in ReflectionDocBlock though.
This is fixed in typeresolver. We can do a composer require update to reset the minimal required version. 0.7.0
Yep... I would still like to get a new testcase in here specifically for this scenario too.
No branches or pull requests
When parsing multiple classes defined in a group, only the first class keeps the fully qualified namespace.
Will result in
My\Namespace\Foo
andBar
The text was updated successfully, but these errors were encountered: