|
34 | 34 | ], |
35 | 35 | ], |
36 | 36 | 'blank_line_after_namespace' => true, |
| 37 | + 'blank_lines_before_namespace' => [ |
| 38 | + 'max_line_breaks' => 1, |
| 39 | + 'min_line_breaks' => 0, |
| 40 | + ], |
37 | 41 | 'blank_line_before_statement' => [ |
38 | 42 | 'statements' => [ |
39 | 43 | 'break', |
|
98 | 102 | 'fully_qualified_strict_types' => true, |
99 | 103 | 'function_declaration' => true, |
100 | 104 | 'function_to_constant' => true, |
101 | | - 'function_typehint_space' => true, |
102 | 105 | 'global_namespace_import' => [ |
103 | 106 | 'import_classes' => true, |
104 | 107 | 'import_constants' => true, |
|
148 | 151 | 'no_binary_string' => true, |
149 | 152 | 'no_blank_lines_after_class_opening' => true, |
150 | 153 | 'no_blank_lines_after_phpdoc' => true, |
151 | | - 'no_blank_lines_before_namespace' => true, |
152 | 154 | 'no_break_comment' => true, |
153 | 155 | 'no_closing_tag' => true, |
154 | 156 | 'no_empty_comment' => true, |
|
168 | 170 | 'no_space_around_double_colon' => true, |
169 | 171 | 'no_spaces_after_function_name' => true, |
170 | 172 | 'no_spaces_around_offset' => true, |
171 | | - 'no_spaces_inside_parenthesis' => true, |
172 | 173 | 'no_superfluous_elseif' => true, |
173 | 174 | 'no_superfluous_phpdoc_tags' => [ |
174 | 175 | 'allow_mixed' => true, |
|
293 | 294 | 'single_space_around_construct' => true, |
294 | 295 | 'single_trait_insert_per_statement' => true, |
295 | 296 | 'space_after_semicolon' => true, |
| 297 | + 'spaces_inside_parentheses' => [ |
| 298 | + 'space' => 'none', |
| 299 | + ], |
296 | 300 | 'standardize_increment' => true, |
297 | 301 | 'standardize_not_equals' => true, |
298 | 302 | 'statement_indentation' => true, |
|
313 | 317 | ] |
314 | 318 | ], |
315 | 319 | 'trim_array_spaces' => true, |
| 320 | + 'type_declaration_spaces' => [ |
| 321 | + 'elements' => [ |
| 322 | + 'function', |
| 323 | + ], |
| 324 | + ], |
| 325 | + 'types_spaces' => true, |
316 | 326 | 'unary_operator_spaces' => true, |
317 | 327 | 'visibility_required' => [ |
318 | 328 | 'elements' => [ |
|
0 commit comments