Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 733 Bytes

no_leading_import_slash.rst

File metadata and controls

34 lines (24 loc) · 733 Bytes

Rule no_leading_import_slash

Remove leading slashes in use clauses.

Examples

Example #1

--- Original
+++ New
 <?php
 namespace Foo;
-use \Bar;
+use Bar;

Rule sets

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.