|
51 | 51 | 'yield', |
52 | 52 | ], |
53 | 53 | ], |
54 | | - 'braces' => [ |
55 | | - 'allow_single_line_anonymous_class_with_empty_body' => true, |
56 | | - ], |
57 | 54 | 'cast_spaces' => true, |
58 | 55 | 'class_attributes_separation' => [ |
59 | 56 | 'elements' => [ |
|
65 | 62 | 'concat_space' => [ |
66 | 63 | 'spacing' => 'one', |
67 | 64 | ], |
| 65 | + 'control_structure_braces' => true, |
| 66 | + 'control_structure_continuation_position' => true, |
| 67 | + 'curly_braces_position' => true, |
68 | 68 | 'declare_equal_normalize' => true, |
| 69 | + 'declare_parentheses' => true, |
69 | 70 | 'function_typehint_space' => true, |
70 | 71 | 'general_phpdoc_annotation_remove' => [ |
71 | 72 | 'annotations' => [ |
|
99 | 100 | 'no_extra_blank_lines' => true, |
100 | 101 | 'no_leading_import_slash' => true, |
101 | 102 | 'no_leading_namespace_whitespace' => true, |
| 103 | + 'no_multiple_statements_per_line' => true, |
102 | 104 | 'no_spaces_around_offset' => true, |
103 | 105 | 'no_superfluous_elseif' => true, |
104 | 106 | 'no_superfluous_phpdoc_tags' => true, |
|
184 | 186 | 'single_blank_line_before_namespace' => true, |
185 | 187 | 'single_line_comment_style' => true, |
186 | 188 | 'single_quote' => true, |
| 189 | + 'single_space_around_construct' => [ |
| 190 | + 'constructs_contain_a_single_space' => [], |
| 191 | + 'constructs_followed_by_a_single_space' => [ |
| 192 | + 'elseif', |
| 193 | + 'for', |
| 194 | + 'foreach', |
| 195 | + 'if', |
| 196 | + 'match', |
| 197 | + 'while', |
| 198 | + 'use_lambda', |
| 199 | + ], |
| 200 | + 'constructs_preceded_by_a_single_space' => [ |
| 201 | + 'use_lambda', |
| 202 | + ], |
| 203 | + ], |
187 | 204 | 'single_trait_insert_per_statement' => true, |
188 | 205 | 'standardize_not_equals' => true, |
| 206 | + 'statement_indentation' => true, |
189 | 207 | 'static_lambda' => true, |
190 | 208 | 'strict_param' => true, |
191 | 209 | 'switch_case_space' => true, |
|
0 commit comments