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