Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.21 KB

single_trait_insert_per_statement.rst

File metadata and controls

43 lines (32 loc) · 1.21 KB

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

The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.