Remove leading slashes in use
clauses.
--- Original
+++ New
<?php
namespace Foo;
-use \Bar;
+use Bar;
The rule is part of the following rule sets:
- @PSR12
- Using the @PSR12 rule set will enable the
no_leading_import_slash
rule. - @PhpCsFixer
- Using the @PhpCsFixer rule set will enable the
no_leading_import_slash
rule. - @Symfony
- Using the @Symfony rule set will enable the
no_leading_import_slash
rule.