Skip to content

Commit cc8c089

Browse files
localheinzsebastianbergmann
authored andcommitted
Fix: Keep fixers and options sorted by name
1 parent c0063dc commit cc8c089

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.php-cs-fixer.dist.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,6 @@
4141
],
4242
],
4343
'blank_line_after_namespace' => true,
44-
'blank_lines_before_namespace' => [
45-
'max_line_breaks' => 1,
46-
'min_line_breaks' => 0,
47-
],
4844
'blank_line_before_statement' => [
4945
'statements' => [
5046
'break',
@@ -72,9 +68,13 @@
7268
'yield_from',
7369
],
7470
],
71+
'blank_lines_before_namespace' => [
72+
'max_line_breaks' => 1,
73+
'min_line_breaks' => 0,
74+
],
7575
'braces_position' => [
76-
'anonymous_functions_opening_brace' => 'next_line_unless_newline_at_signature_end',
7776
'anonymous_classes_opening_brace' => 'next_line_unless_newline_at_signature_end',
77+
'anonymous_functions_opening_brace' => 'next_line_unless_newline_at_signature_end',
7878
],
7979
'cast_spaces' => true,
8080
'class_attributes_separation' => [
@@ -149,8 +149,8 @@
149149
],
150150
'native_type_declaration_casing' => true,
151151
'new_with_parentheses' => [
152-
'named_class' => false,
153152
'anonymous_class' => false,
153+
'named_class' => false,
154154
],
155155
'no_alias_functions' => true,
156156
'no_alias_language_construct_call' => true,

0 commit comments

Comments
 (0)