@@ -156,7 +156,9 @@ public function __construct()
156
156
'fix_inline ' => true ,
157
157
'replacements ' => ['inheritDocs ' => 'inheritDoc ' ],
158
158
],
159
+ 'global_namespace_import ' => false ,
159
160
'group_import ' => false ,
161
+ 'header_comment ' => false , // false by default
160
162
'heredoc_indentation ' => ['indentation ' => 'start_plus_one ' ],
161
163
'heredoc_to_nowdoc ' => true ,
162
164
'implode_call ' => true ,
@@ -184,7 +186,9 @@ public function __construct()
184
186
'modernize_types_casting ' => true ,
185
187
'multiline_comment_opening_closing ' => true ,
186
188
'multiline_whitespace_before_semicolons ' => ['strategy ' => 'no_multi_line ' ],
189
+ 'native_constant_invocation ' => false ,
187
190
'native_function_casing ' => true ,
191
+ 'native_function_invocation ' => false ,
188
192
'native_function_type_declaration_casing ' => true ,
189
193
'new_with_braces ' => true ,
190
194
'no_alias_functions ' => ['sets ' => ['@all ' ]],
@@ -483,7 +487,9 @@ public function __construct()
483
487
],
484
488
'trim_array_spaces ' => true ,
485
489
'unary_operator_spaces ' => true ,
490
+ 'use_arrow_functions ' => false , // requires PHP7.4+
486
491
'visibility_required ' => ['elements ' => ['const ' , 'method ' , 'property ' ]],
492
+ 'void_return ' => false , // changes method signature
487
493
'whitespace_after_comma_in_array ' => true ,
488
494
'yoda_style ' => [
489
495
'equal ' => false ,
0 commit comments