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 21, 2023
1 parent 18236fa commit 87b8c86
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,6 +68,10 @@
'yield_from',
],
],
'blank_lines_before_namespace' => [
'max_line_breaks' => 1,
'min_line_breaks' => 0,
],
'cast_spaces' => true,
'class_attributes_separation' => [
'elements' => [
Expand All @@ -91,8 +91,8 @@
'control_structure_braces' => true,
'control_structure_continuation_position' => true,
'curly_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',
],
'declare_equal_normalize' => ['space' => 'none'],
'declare_parentheses' => true,
Expand Down Expand Up @@ -149,8 +149,8 @@
],
'native_function_type_declaration_casing' => true,
'new_with_braces' => [
'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 87b8c86

Please sign in to comment.