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
Hello, found that when I use rule
'global_namespace_import' => [ 'import_classes' => true, ],
with this package, the result for global namespaces (\BackedEnum, \Exception) is something like this:
\BackedEnum
\Exception
/** * @throws Exception */ public function destroy();
but the expected result is something like this:
/** * @throws \Exception */ public function destroy();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello, found that when I use rule
with this package, the result for global namespaces (
\BackedEnum
,\Exception
) is something like this:but the expected result is something like this:
The text was updated successfully, but these errors were encountered: