
single_import_per_statement
¶There MUST be one use keyword per declaration.
--- Original
+++ New
<?php
-use Foo, Sample, Sample\Sample as Sample2;
+use Foo;
+use Sample;
+use Sample\Sample as Sample2;
The rule is part of the following rule sets:
Using the @PSR12 rule set will enable the single_import_per_statement
rule.
Using the @PSR2 rule set will enable the single_import_per_statement
rule.
Using the @PhpCsFixer rule set will enable the single_import_per_statement
rule.
Using the @Symfony rule set will enable the single_import_per_statement
rule.