@@ -18,7 +18,15 @@ return PhpCsFixer\Config::create()
1818 'align_equals ' => true
1919 ],
2020 'blank_line_after_namespace ' => true ,
21- 'blank_line_before_return ' => true ,
21+ 'blank_line_before_statement ' => [
22+ 'statements ' => [
23+ 'break ' ,
24+ 'continue ' ,
25+ 'return ' ,
26+ 'throw ' ,
27+ 'try ' ,
28+ ],
29+ ],
2230 'braces ' => true ,
2331 'cast_spaces ' => true ,
2432 'concat_space ' => ['spacing ' => 'one ' ],
@@ -32,6 +40,7 @@ return PhpCsFixer\Config::create()
3240 'lowercase_constants ' => true ,
3341 'lowercase_keywords ' => true ,
3442 'method_argument_space ' => true ,
43+ 'native_function_invocation ' => true ,
3544 'no_alias_functions ' => true ,
3645 'no_blank_lines_after_class_opening ' => true ,
3746 'no_blank_lines_after_phpdoc ' => true ,
@@ -47,6 +56,7 @@ return PhpCsFixer\Config::create()
4756 'no_trailing_whitespace ' => true ,
4857 'no_unused_imports ' => true ,
4958 'no_whitespace_in_blank_line ' => true ,
59+ 'ordered_imports ' => true ,
5060 'phpdoc_align ' => true ,
5161 'phpdoc_indent ' => true ,
5262 'phpdoc_no_access ' => true ,
0 commit comments