Is there an existing rule that facilitate the following?
The following ...
$one = 1;
$two = 2;
$three = 3;
$four = 4;
$five=5;
$six =6;
$seven= 7;
... should turn into ...
$one = 1;
$two = 2;
$three = 3;
$four = 4;
$five = 5;
$six = 6;
$seven = 7;
This fixes it:
'binary_operator_spaces' => [
'operators' => [
'=' => 'single_space',
]
],
Most helpful comment
This fixes it: