@@ -13,6 +13,7 @@ return PhpCsFixer\Config::create()
1313 'array_syntax ' => ['syntax ' => 'short ' ],
1414 'blank_line_after_opening_tag ' => true ,
1515 'concat_space ' => ['spacing ' => 'one ' ],
16+ 'class_attributes_separation ' => ['elements ' => ['method ' ]],
1617 'declare_strict_types ' => true ,
1718 'increment_style ' => ['style ' => 'post ' ],
1819 'is_null ' => ['use_yoda_style ' => false ],
@@ -22,7 +23,7 @@ return PhpCsFixer\Config::create()
2223 'modernize_types_casting ' => true ,
2324 'no_multiline_whitespace_before_semicolons ' => true ,
2425 'no_superfluous_elseif ' => true ,
25- 'no_superfluous_phpdoc_tags ' => true ,
26+ 'no_superfluous_phpdoc_tags ' => false ,
2627 'no_useless_else ' => true ,
2728 'no_useless_return ' => true ,
2829 'ordered_imports ' => true ,
@@ -31,6 +32,7 @@ return PhpCsFixer\Config::create()
3132 'php_unit_construct ' => true ,
3233 'php_unit_dedicate_assert ' => true ,
3334 'return_assignment ' => true ,
35+ 'single_blank_line_at_eof ' => true ,
3436 'single_line_comment_style ' => true ,
3537 'ternary_to_null_coalescing ' => true ,
3638 'yoda_style ' => ['equal ' => false , 'identical ' => false , 'less_and_greater ' => false ],
0 commit comments