|
61 | 61 | 'yield_from', |
62 | 62 | ], |
63 | 63 | ], |
64 | | - 'braces' => [ |
65 | | - 'position_after_anonymous_constructs' => 'next', |
66 | | - ], |
67 | 64 | 'cast_spaces' => true, |
68 | 65 | 'class_attributes_separation' => [ |
69 | 66 | 'elements' => [ |
|
80 | 77 | 'compact_nullable_typehint' => true, |
81 | 78 | 'concat_space' => ['spacing' => 'one'], |
82 | 79 | 'constant_case' => true, |
| 80 | + 'control_structure_braces' => true, |
| 81 | + 'control_structure_continuation_position' => true, |
| 82 | + 'curly_braces_position' => [ |
| 83 | + 'anonymous_functions_opening_brace' => 'next_line_unless_newline_at_signature_end', |
| 84 | + 'anonymous_classes_opening_brace' => 'next_line_unless_newline_at_signature_end', |
| 85 | + ], |
83 | 86 | 'declare_equal_normalize' => ['space' => 'none'], |
| 87 | + 'declare_parentheses' => true, |
84 | 88 | 'declare_strict_types' => true, |
85 | 89 | 'dir_constant' => true, |
86 | 90 | 'echo_tag_syntax' => true, |
|
153 | 157 | 'no_leading_import_slash' => true, |
154 | 158 | 'no_leading_namespace_whitespace' => true, |
155 | 159 | 'no_mixed_echo_print' => ['use' => 'print'], |
| 160 | + 'no_multiple_statements_per_line' => true, |
156 | 161 | 'no_multiline_whitespace_around_double_arrow' => true, |
157 | 162 | 'no_null_property_initialization' => true, |
158 | 163 | 'no_php4_constructor' => true, |
|
278 | 283 | 'single_import_per_statement' => true, |
279 | 284 | 'single_line_after_imports' => true, |
280 | 285 | 'single_quote' => true, |
281 | | - 'single_space_after_construct' => true, |
| 286 | + 'single_space_around_construct' => true, |
282 | 287 | 'single_trait_insert_per_statement' => true, |
283 | 288 | 'space_after_semicolon' => true, |
284 | 289 | 'standardize_increment' => true, |
285 | 290 | 'standardize_not_equals' => true, |
| 291 | + 'statement_indentation' => true, |
286 | 292 | 'static_lambda' => true, |
287 | 293 | 'strict_param' => true, |
288 | 294 | 'string_line_ending' => true, |
|
0 commit comments