Skip to content

Commit

Permalink
Update .php-cs-fixer.no-header.php
Browse files Browse the repository at this point in the history
  • Loading branch information
ddevsr authored Jan 16, 2024
1 parent 4439283 commit fe326bf
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .php-cs-fixer.no-header.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,17 @@
__DIR__ . '/admin/starter/builds',
]);

$overrides = [];
$overrides = [
'binary_operator_spaces' => [
'default' => 'single_space',
'operators' => [
'=' => 'align_single_space_minimal',
'=>' => 'align_single_space_minimal_by_scope',
'||' => 'align_single_space_minimal',
'.=' => 'align_single_space_minimal',
],
],
];

$options = [
'cacheFile' => 'build/.php-cs-fixer.no-header.cache',
Expand Down

0 comments on commit fe326bf

Please sign in to comment.