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
SlevomatCodingStandard.Namespaces.AlphabeticallySortedUses
<?php use Foo\Bar; /** * bla */ use Abc\Xyz;
Will result in:
<?php use Abc\Xyz; use Foo\Bar;
completely removing the comment.
Additionally it would be nice if there was an option/rule to set if the "use" statements should be before or after the filedoc
The text was updated successfully, but these errors were encountered:
I think it's not filedoc in this code, it's doccomment for use Abc\Xyz; so for code like this:
use Abc\Xyz;
<?php use Abc\Xyz; use Www; /** * bla */ use Foo\Bar;
the output should be:
<?php use Abc\Xyz; /** * bla */ use Foo\Bar; use Www;
Sorry, something went wrong.
I guess since it's the first comment in the file it might be filedoc, but anyways, it shouldn't remove the comment
Fixed in d5a5ebb
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
SlevomatCodingStandard.Namespaces.AlphabeticallySortedUses
Will result in:
completely removing the comment.
Additionally it would be nice if there was an option/rule to set if the "use" statements should be before or after the filedoc
The text was updated successfully, but these errors were encountered: