Skip to content

Latest commit

 

History

History
65 lines (46 loc) · 1.34 KB

multiline_whitespace_before_semicolons.rst

File metadata and controls

65 lines (46 loc) · 1.34 KB

Rule multiline_whitespace_before_semicolons

Forbid multi-line whitespace before the closing semicolon or move the semicolon to the new line for chained calls.

Configuration

strategy

Forbid multi-line whitespace or move the semicolon to the new line for chained calls.

Allowed values: 'new_line_for_chained_calls', 'no_multi_line'

Default value: 'no_multi_line'

Examples

Example #1

Default configuration.

--- Original
+++ New
 <?php
 function foo () {
-    return 1 + 2
-        ;
+    return 1 + 2;
 }

Example #2

With configuration: ['strategy' => 'new_line_for_chained_calls'].

--- Original
+++ New
 <?php
                         $this->method1()
                             ->method2()
-                            ->method(3);
+                            ->method(3)
+;
                     ?>

Rule sets

The rule is part of the following rule set:

@PhpCsFixer

Using the @PhpCsFixer rule set will enable the multiline_whitespace_before_semicolons rule with the config below:

['strategy' => 'new_line_for_chained_calls']