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 authored and sebastianbergmann committed Oct 22, 2023
1 parent c0063dc commit cc8c089
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,6 @@
],
],
'blank_line_after_namespace' => true,
'blank_lines_before_namespace' => [
'max_line_breaks' => 1,
'min_line_breaks' => 0,
],
'blank_line_before_statement' => [
'statements' => [
'break',
Expand Down Expand Up @@ -72,9 +68,13 @@
'yield_from',
],
],
'blank_lines_before_namespace' => [
'max_line_breaks' => 1,
'min_line_breaks' => 0,
],
'braces_position' => [
'anonymous_functions_opening_brace' => 'next_line_unless_newline_at_signature_end',
'anonymous_classes_opening_brace' => 'next_line_unless_newline_at_signature_end',
'anonymous_functions_opening_brace' => 'next_line_unless_newline_at_signature_end',
],
'cast_spaces' => true,
'class_attributes_separation' => [
Expand Down Expand Up @@ -149,8 +149,8 @@
],
'native_type_declaration_casing' => true,
'new_with_parentheses' => [
'named_class' => false,
'anonymous_class' => false,
'named_class' => false,
],
'no_alias_functions' => true,
'no_alias_language_construct_call' => true,
Expand Down

0 comments on commit cc8c089

Please sign in to comment.