@@ -41,6 +41,7 @@ public function rules(): array
4141 'concat_space ' => [
4242 'spacing ' => 'none ' ,
4343 ],
44+ 'constant_case ' => ['case ' => 'lower ' ],
4445 'declare_equal_normalize ' => true ,
4546 'elseif ' => true ,
4647 'encoding ' => true ,
@@ -55,7 +56,6 @@ public function rules(): array
5556 'linebreak_after_opening_tag ' => true ,
5657 'line_ending ' => true ,
5758 'lowercase_cast ' => true ,
58- 'lowercase_constants ' => true ,
5959 'lowercase_keywords ' => true ,
6060 'lowercase_static_reference ' => true , // added from Symfony
6161 'magic_method_casing ' => true , // added from Symfony
@@ -104,7 +104,7 @@ public function rules(): array
104104 'object_operator_without_whitespace ' => true ,
105105 'ordered_imports ' => ['sortAlgorithm ' => 'alpha ' ],
106106 'phpdoc_indent ' => true ,
107- 'phpdoc_inline_tag ' => true ,
107+ // 'phpdoc_inline_tag' => true,
108108 'phpdoc_no_access ' => true ,
109109 'phpdoc_no_package ' => true ,
110110 'phpdoc_no_useless_inheritdoc ' => true ,
@@ -133,7 +133,9 @@ public function rules(): array
133133 'switch_case_semicolon_to_colon ' => true ,
134134 'switch_case_space ' => true ,
135135 'ternary_operator_spaces ' => true ,
136- 'trailing_comma_in_multiline_array ' => true ,
136+ 'trailing_comma_in_multiline ' => [
137+ 'elements ' => ['arrays ' ],
138+ ],
137139 'trim_array_spaces ' => true ,
138140 'unary_operator_spaces ' => true ,
139141 'visibility_required ' => [
0 commit comments