Rule single_trait_insert_per_statement
¶
Each trait use
must be done as single statement.
Examples¶
Example #1¶
--- Original
+++ New
<?php
final class Example
{
- use Foo, Bar;
+ use Foo;use Bar;
}
Rule sets¶
The rule is part of the following rule sets:
References¶
Fixer class: PhpCsFixer\Fixer\ClassNotation\SingleTraitInsertPerStatementFixer
Test class: PhpCsFixer\Tests\Fixer\ClassNotation\SingleTraitInsertPerStatementFixerTest
The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.