|
22 | 22 | 'blank_lines_before_namespace' => ['max_line_breaks' => 2, 'min_line_breaks' => 2], // we want 1 blank line before namespace
|
23 | 23 | 'blank_line_after_opening_tag' => true,
|
24 | 24 | 'blank_line_before_statement' => true,
|
25 |
| - //'braces' => true, |
26 | 25 | 'cast_spaces' => true,
|
27 | 26 | 'class_attributes_separation' => ['elements' => ['method' => 'one', 'property' => 'one']], // const are often grouped with other related const
|
28 | 27 | 'class_definition' => false, // phpcs disagree
|
|
169 | 168 | 'phpdoc_align' => false, // Waste of time
|
170 | 169 | 'phpdoc_annotation_without_dot' => true,
|
171 | 170 | 'phpdoc_indent' => true,
|
172 |
| - //'phpdoc_inline_tag' => true, |
173 | 171 | 'phpdoc_line_span' => false, // Unfortunately our old comments turn even uglier with this
|
174 | 172 | 'phpdoc_no_access' => true,
|
175 | 173 | 'phpdoc_no_alias_tag' => true,
|
|
215 | 213 | 'single_line_comment_style' => true,
|
216 | 214 | 'single_line_throw' => false, // I don't see any reason for having a special case for Exception
|
217 | 215 | 'single_quote' => true,
|
218 |
| - //'single_space_after_construct' => true, |
219 | 216 | 'single_trait_insert_per_statement' => true,
|
220 | 217 | 'space_after_semicolon' => true,
|
221 | 218 | 'spaces_inside_parentheses' => ['space' => 'none'],
|
|
0 commit comments