|
17 | 17 | 'return',
|
18 | 18 | ],
|
19 | 19 | ],
|
20 |
| - 'braces' => [ |
21 |
| - 'allow_single_line_anonymous_class_with_empty_body' => true, |
22 |
| - 'allow_single_line_closure' => true, |
23 |
| - 'position_after_control_structures' => 'same', |
24 |
| - 'position_after_functions_and_oop_constructs' => 'next', |
25 |
| - 'position_after_anonymous_constructs' => 'next', |
26 |
| - ], |
27 |
| - 'curly_braces_position' => [ |
| 20 | + 'blank_line_between_import_groups' => true, |
| 21 | + 'blank_lines_before_namespace' => true, |
| 22 | + 'braces_position' => [ |
28 | 23 | 'control_structures_opening_brace' => 'same_line',
|
29 | 24 | 'functions_opening_brace' => 'next_line_unless_newline_at_signature_end',
|
30 | 25 | 'anonymous_functions_opening_brace' => 'same_line',
|
|
53 | 48 | 'spacing' => 'one',
|
54 | 49 | ],
|
55 | 50 | 'constant_case' => ['case' => 'lower'],
|
| 51 | + 'control_structure_braces' => true, |
| 52 | + 'control_structure_continuation_position' => [ |
| 53 | + 'position' => 'same_line', |
| 54 | + ], |
56 | 55 | 'declare_equal_normalize' => true,
|
| 56 | + 'declare_parentheses' => true, |
57 | 57 | 'elseif' => true,
|
58 | 58 | 'encoding' => true,
|
59 | 59 | 'full_opening_tag' => true,
|
60 | 60 | 'fully_qualified_strict_types' => true,
|
61 | 61 | 'function_declaration' => true,
|
62 |
| - 'function_typehint_space' => true, |
63 | 62 | 'general_phpdoc_tag_rename' => true,
|
64 | 63 | 'heredoc_to_nowdoc' => true,
|
65 | 64 | 'include' => true,
|
66 | 65 | 'increment_style' => ['style' => 'post'],
|
67 | 66 | 'indentation_type' => true,
|
68 | 67 | 'integer_literal_case' => true,
|
69 | 68 | 'lambda_not_used_import' => true,
|
70 |
| - 'linebreak_after_opening_tag' => true, |
71 | 69 | 'line_ending' => true,
|
| 70 | + 'linebreak_after_opening_tag' => true, |
72 | 71 | 'list_syntax' => true,
|
73 | 72 | 'lowercase_cast' => true,
|
74 | 73 | 'lowercase_keywords' => true,
|
75 | 74 | 'lowercase_static_reference' => true,
|
76 |
| - 'magic_method_casing' => true, |
77 | 75 | 'magic_constant_casing' => true,
|
| 76 | + 'magic_method_casing' => true, |
78 | 77 | 'method_argument_space' => [
|
79 | 78 | 'on_multiline' => 'ignore',
|
80 | 79 | ],
|
| 80 | + 'method_chaining_indentation' => true, |
81 | 81 | 'multiline_whitespace_before_semicolons' => [
|
82 | 82 | 'strategy' => 'no_multi_line',
|
83 | 83 | ],
|
|
105 | 105 | 'use' => 'echo',
|
106 | 106 | ],
|
107 | 107 | 'no_multiline_whitespace_around_double_arrow' => true,
|
| 108 | + 'no_multiple_statements_per_line' => true, |
108 | 109 | 'no_short_bool_cast' => true,
|
109 | 110 | 'no_singleline_whitespace_before_semicolons' => true,
|
110 |
| - 'no_spaces_after_function_name' => true, |
111 | 111 | 'no_space_around_double_colon' => true,
|
| 112 | + 'no_spaces_after_function_name' => true, |
112 | 113 | 'no_spaces_around_offset' => [
|
113 | 114 | 'positions' => ['inside', 'outside'],
|
114 | 115 | ],
|
115 |
| - 'no_spaces_inside_parenthesis' => true, |
116 |
| - 'no_trailing_comma_in_list_call' => true, |
117 |
| - 'no_trailing_comma_in_singleline_array' => true, |
| 116 | + 'no_superfluous_phpdoc_tags' => [ |
| 117 | + 'allow_mixed' => true, |
| 118 | + 'allow_unused_params' => true, |
| 119 | + ], |
| 120 | + 'no_trailing_comma_in_singleline' => true, |
118 | 121 | 'no_trailing_whitespace' => true,
|
119 | 122 | 'no_trailing_whitespace_in_comment' => true,
|
120 | 123 | 'no_unneeded_control_parentheses' => [
|
121 | 124 | 'statements' => ['break', 'clone', 'continue', 'echo_print', 'return', 'switch_case', 'yield'],
|
122 | 125 | ],
|
123 |
| - 'no_unneeded_curly_braces' => true, |
| 126 | + 'no_unneeded_braces' => true, |
| 127 | + 'no_unreachable_default_argument_value' => true, |
124 | 128 | 'no_unset_cast' => true,
|
125 | 129 | 'no_unused_imports' => true,
|
126 |
| - 'no_unreachable_default_argument_value' => true, |
127 | 130 | 'no_useless_return' => true,
|
128 | 131 | 'no_whitespace_before_comma_in_array' => true,
|
129 | 132 | 'no_whitespace_in_blank_line' => true,
|
130 | 133 | 'normalize_index_brace' => true,
|
131 | 134 | 'not_operator_with_successor_space' => true,
|
| 135 | + 'nullable_type_declaration' => true, |
| 136 | + 'nullable_type_declaration_for_default_null_value' => true, |
132 | 137 | 'object_operator_without_whitespace' => true,
|
133 |
| - 'ordered_imports' => ['sort_algorithm' => 'alpha'], |
134 |
| - 'psr_autoloading' => false, |
| 138 | + 'ordered_imports' => ['sort_algorithm' => 'alpha', 'imports_order' => ['const', 'class', 'function']], |
| 139 | + 'ordered_interfaces' => true, |
| 140 | + 'ordered_traits' => true, |
135 | 141 | 'phpdoc_indent' => true,
|
136 | 142 | 'phpdoc_inline_tag_normalizer' => true,
|
137 | 143 | 'phpdoc_no_access' => true,
|
138 | 144 | 'phpdoc_no_package' => true,
|
139 | 145 | 'phpdoc_no_useless_inheritdoc' => true,
|
| 146 | + 'phpdoc_order' => [ |
| 147 | + 'order' => ['param', 'return', 'throws'], |
| 148 | + ], |
140 | 149 | 'phpdoc_scalar' => true,
|
| 150 | + 'phpdoc_separation' => [ |
| 151 | + 'groups' => [ |
| 152 | + ['deprecated', 'link', 'see', 'since'], |
| 153 | + ['author', 'copyright', 'license'], |
| 154 | + ['category', 'package', 'subpackage'], |
| 155 | + ['property', 'property-read', 'property-write'], |
| 156 | + ['param', 'return'], |
| 157 | + ], |
| 158 | + ], |
141 | 159 | 'phpdoc_single_line_var_spacing' => true,
|
142 | 160 | 'phpdoc_summary' => false,
|
143 |
| - 'phpdoc_to_comment' => false, |
144 | 161 | 'phpdoc_tag_type' => [
|
145 | 162 | 'tags' => [
|
146 | 163 | 'inheritdoc' => 'inline',
|
147 | 164 | ],
|
148 | 165 | ],
|
| 166 | + 'phpdoc_to_comment' => false, |
149 | 167 | 'phpdoc_trim' => true,
|
150 | 168 | 'phpdoc_types' => true,
|
151 | 169 | 'phpdoc_var_without_name' => true,
|
| 170 | + 'psr_autoloading' => false, |
152 | 171 | 'return_type_declaration' => ['space_before' => 'none'],
|
153 | 172 | 'self_accessor' => false,
|
154 | 173 | 'short_scalar_cast' => true,
|
155 | 174 | 'simplified_null_return' => false,
|
156 | 175 | 'single_blank_line_at_eof' => true,
|
157 |
| - 'single_blank_line_before_namespace' => true, |
158 | 176 | 'single_class_element_per_statement' => [
|
159 | 177 | 'elements' => ['const', 'property'],
|
160 | 178 | ],
|
|
164 | 182 | 'comment_types' => ['hash'],
|
165 | 183 | ],
|
166 | 184 | 'single_quote' => true,
|
| 185 | + 'single_space_around_construct' => true, |
167 | 186 | 'space_after_semicolon' => true,
|
168 | 187 | 'standardize_not_equals' => true,
|
169 |
| - 'statement_indentation' => false, |
| 188 | + 'statement_indentation' => true, |
170 | 189 | 'switch_case_semicolon_to_colon' => true,
|
171 | 190 | 'switch_case_space' => true,
|
172 | 191 | 'ternary_operator_spaces' => true,
|
|
178 | 197 | 'elements' => ['method', 'property'],
|
179 | 198 | ],
|
180 | 199 | 'whitespace_after_comma_in_array' => true,
|
| 200 | + 'yoda_style' => [ |
| 201 | + 'always_move_variable' => false, |
| 202 | + 'equal' => false, |
| 203 | + 'identical' => false, |
| 204 | + 'less_and_greater' => false, |
| 205 | + ], |
181 | 206 | ];
|
182 | 207 |
|
183 | 208 | $finder = Finder::create()
|
184 | 209 | ->name('*.php')
|
| 210 | + ->notName('*.blade.php') |
185 | 211 | ->exclude([
|
186 | 212 | 'vendor',
|
| 213 | + 'storage', |
| 214 | + 'bootstrap/cache', |
187 | 215 | ])
|
188 | 216 | ->ignoreDotFiles(true)
|
189 | 217 | ->ignoreVCS(true);
|
|
0 commit comments