Skip to content

Commit

Permalink
Fix: Keep fixers and options sorted by name
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Oct 23, 2023
1 parent 4aacfe5 commit cfa77c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
'backtick_to_shell_exec' => true,
'binary_operator_spaces' => [
'operators' => [
'=' => 'align_single_space_minimal',
'*=' => 'align_single_space_minimal',
'+=' => 'align_single_space_minimal',
'-=' => 'align_single_space_minimal',
'*=' => 'align_single_space_minimal',
'/=' => 'align_single_space_minimal',
'=' => 'align_single_space_minimal',
'=>' => 'align_single_space_minimal',
],
],
Expand Down

0 comments on commit cfa77c2

Please sign in to comment.