Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 318 Bytes

no_multiple_statements_per_line.rst

File metadata and controls

20 lines (15 loc) · 318 Bytes

Rule no_multiple_statements_per_line

There must not be more than one statement per line.

Examples

Example #1

--- Original
+++ New
 <?php
-foo(); bar();
+foo();
+bar();