Binary operators should be surrounded by space as configured.
Default fix strategy.
Allowed values: 'align'
, 'align_single_space'
, 'align_single_space_minimal'
, 'no_space'
, 'single_space'
, null
Default value: 'single_space'
Dictionary of binary operator
=> fix strategy
values that differ from
the default strategy. Supported are: =
, *
, /
, %
, <
, >
,
|
, ^
, +
, -
, &
, &=
, &&
, ||
, .=
, /=
,
=>
, ==
, >=
, ===
, !=
, <>
, !==
, <=
, and
,
or
, xor
, -=
, %=
, *=
, |=
, +=
, <<
, <<=
,
>>
, >>=
, ^=
, **
, **=
, <=>
, ??
, ??=
Allowed types: array
Default value: []
Default configuration.
--- Original
+++ New
<?php
-$a= 1 + $b^ $d !== $e or $f;
+$a = 1 + $b ^ $d !== $e or $f;
With configuration: ['operators' => ['=' => 'align', 'xor' => null]]
.
--- Original
+++ New
<?php
$aa= 1;
-$b=2;
+$b =2;
$c = $d xor $e;
-$f -= 1;
+$f -= 1;
With configuration: ['operators' => ['+=' => 'align_single_space']]
.
--- Original
+++ New
<?php
-$a = $b +=$c;
-$d = $ee+=$f;
+$a = $b += $c;
+$d = $ee += $f;
-$g = $b +=$c;
-$h = $ee+=$f;
+$g = $b += $c;
+$h = $ee += $f;
With configuration: ['operators' => ['===' => 'align_single_space_minimal']]
.
--- Original
+++ New
<?php
-$a = $b===$c;
-$d = $f === $g;
-$h = $i=== $j;
+$a = $b === $c;
+$d = $f === $g;
+$h = $i === $j;
With configuration: ['operators' => ['|' => 'no_space']]
.
--- Original
+++ New
<?php
-$foo = \json_encode($bar, JSON_PRESERVE_ZERO_FRACTION | JSON_PRETTY_PRINT);
+$foo = \json_encode($bar, JSON_PRESERVE_ZERO_FRACTION|JSON_PRETTY_PRINT);
With configuration: ['operators' => ['=>' => 'single_space']]
.
--- Original
+++ New
<?php
$array = [
- "foo" => 1,
- "baaaaaaaaaaar" => 11,
+ "foo" => 1,
+ "baaaaaaaaaaar" => 11,
];
With configuration: ['operators' => ['=>' => 'align']]
.
--- Original
+++ New
<?php
$array = [
- "foo" => 12,
+ "foo" => 12,
"baaaaaaaaaaar" => 13,
];
With configuration: ['operators' => ['=>' => 'align_single_space']]
.
--- Original
+++ New
<?php
$array = [
- "foo" => 12,
+ "foo" => 12,
"baaaaaaaaaaar" => 13,
];
With configuration: ['operators' => ['=>' => 'align_single_space_minimal']]
.
--- Original
+++ New
<?php
$array = [
- "foo" => 12,
- "baaaaaaaaaaar" => 13,
+ "foo" => 12,
+ "baaaaaaaaaaar" => 13,
];
The rule is part of the following rule sets:
- @PhpCsFixer
- Using the @PhpCsFixer rule set will enable the
binary_operator_spaces
rule with the default config. - @Symfony
- Using the @Symfony rule set will enable the
binary_operator_spaces
rule with the default config.