Skip to content

Commit

Permalink
Update cs fixer config
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusjunges committed Jan 9, 2024
1 parent a83e2f9 commit d35e7e4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .php_cs.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,13 @@
'phpdoc_scalar' => true,
'unary_operator_spaces' => true,
'binary_operator_spaces' => [
'align_double_arrow' => false,
'align_equals' => false,
'operators' => [
'=>' => 'single_space',
'===' => 'single_space',
'=' => 'single_space',
'xor' => 'single_space',
'|' => 'no_space',
]
],
'blank_line_before_statement' => [
'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'],
Expand Down

0 comments on commit d35e7e4

Please sign in to comment.