@@ -22,10 +22,6 @@ return (new PhpCsFixer\Config())
2222 'trailing_comma_in_multiline' => true,
2323 'phpdoc_scalar' => true,
2424 'unary_operator_spaces' => true,
25- 'binary_operator_spaces' => [
26- 'align_double_arrow' => true,
27- 'align_equals' => true
28- ],
2925 'blank_line_before_statement' => [
3026 'statements' => [
3127 'break',
@@ -41,6 +37,7 @@ return (new PhpCsFixer\Config())
4137 'on_multiline' => 'ensure_fully_multiline',
4238 'keep_multiple_spaces_after_comma' => true,
4339 ],
40+ 'void_return' => true,
4441 'single_trait_insert_per_statement' => true,
4542 'blank_line_after_namespace' => true,
4643 'braces' => true,
@@ -52,14 +49,14 @@ return (new PhpCsFixer\Config())
5249 'function_declaration' => true,
5350 'indentation_type' => true,
5451 'line_ending' => true,
55- 'lowercase_constants ' => true ,
52+ 'constant_case ' => ['case' => 'lower'] ,
5653 'lowercase_keywords' => true,
5754 'no_blank_lines_after_class_opening' => true,
5855 'no_blank_lines_after_phpdoc' => true,
5956 'no_closing_tag' => true,
6057 'no_empty_phpdoc' => true,
6158 'no_empty_statement' => true,
62- 'no_extra_consecutive_blank_lines ' => true,
59+ 'no_extra_blank_lines ' => true,
6360 'no_leading_namespace_whitespace' => true,
6461 'no_singleline_whitespace_before_semicolons' => true,
6562 'no_spaces_after_function_name' => true,
0 commit comments