In method arguments and method call, there MUST NOT be a space before each comma and there MUST be one space after each comma. Argument lists MAY be split across multiple lines, where each subsequent line is indented once. When doing so, the first item in the list MUST be on the next line, and there MUST be only one argument per line.
Whether keep multiple spaces after comma.
Allowed types: bool
Default value: false
Defines how to handle function arguments lists that contain newlines.
Allowed values: 'ensure_fully_multiline'
, 'ensure_single_line'
, 'ignore'
Default value: 'ensure_fully_multiline'
Whether the whitespace between heredoc end and comma should be removed.
Allowed types: bool
Default value: false
Default configuration.
--- Original
+++ New
<?php
-function sample($a=10,$b=20,$c=30) {}
-sample(1, 2);
+function sample($a=10, $b=20, $c=30) {}
+sample(1, 2);
With configuration: ['keep_multiple_spaces_after_comma' => false]
.
--- Original
+++ New
<?php
-function sample($a=10,$b=20,$c=30) {}
-sample(1, 2);
+function sample($a=10, $b=20, $c=30) {}
+sample(1, 2);
With configuration: ['keep_multiple_spaces_after_comma' => true]
.
--- Original
+++ New
<?php
-function sample($a=10,$b=20,$c=30) {}
+function sample($a=10, $b=20, $c=30) {}
sample(1, 2);
With configuration: ['on_multiline' => 'ensure_fully_multiline']
.
--- Original
+++ New
<?php
-function sample($a=10,
- $b=20,$c=30) {}
-sample(1,
- 2);
+function sample(
+ $a=10,
+ $b=20,
+ $c=30
+) {}
+sample(
+ 1,
+ 2
+);
With configuration: ['on_multiline' => 'ensure_single_line']
.
--- Original
+++ New
<?php
-function sample(
- $a=10,
- $b=20,
- $c=30
-) {}
-sample(
- 1,
- 2
-);
+function sample($a=10, $b=20, $c=30) {}
+sample(1, 2);
With configuration: ['on_multiline' => 'ensure_fully_multiline', 'keep_multiple_spaces_after_comma' => true]
.
--- Original
+++ New
<?php
-function sample($a=10,
- $b=20,$c=30) {}
-sample(1,
- 2);
+function sample(
+ $a=10,
+ $b=20,
+ $c=30
+) {}
+sample(
+ 1,
+ 2
+);
sample('foo', 'foobarbaz', 'baz');
sample('foobar', 'bar', 'baz');
With configuration: ['on_multiline' => 'ensure_fully_multiline', 'keep_multiple_spaces_after_comma' => false]
.
--- Original
+++ New
<?php
-function sample($a=10,
- $b=20,$c=30) {}
-sample(1,
- 2);
-sample('foo', 'foobarbaz', 'baz');
-sample('foobar', 'bar', 'baz');
+function sample(
+ $a=10,
+ $b=20,
+ $c=30
+) {}
+sample(
+ 1,
+ 2
+);
+sample('foo', 'foobarbaz', 'baz');
+sample('foobar', 'bar', 'baz');
With configuration: ['after_heredoc' => true]
.
--- Original
+++ New
<?php
sample(
<<<EOD
foo
- EOD
- ,
+ EOD,
'bar'
);
The rule is part of the following rule sets:
- @PHP73Migration
Using the @PHP73Migration rule set will enable the
method_argument_space
rule with the config below:['after_heredoc' => true]
- @PHP74Migration
Using the @PHP74Migration rule set will enable the
method_argument_space
rule with the config below:['after_heredoc' => true]
- @PHP80Migration
Using the @PHP80Migration rule set will enable the
method_argument_space
rule with the config below:['after_heredoc' => true]
- @PHP81Migration
Using the @PHP81Migration rule set will enable the
method_argument_space
rule with the config below:['after_heredoc' => true]
- @PSR12
Using the @PSR12 rule set will enable the
method_argument_space
rule with the config below:['on_multiline' => 'ensure_fully_multiline']
- @PSR2
Using the @PSR2 rule set will enable the
method_argument_space
rule with the config below:['on_multiline' => 'ensure_fully_multiline']
- @PhpCsFixer
Using the @PhpCsFixer rule set will enable the
method_argument_space
rule with the config below:['on_multiline' => 'ensure_fully_multiline']
- @Symfony
Using the @Symfony rule set will enable the
method_argument_space
rule with the config below:['on_multiline' => 'ignore']