File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ <?php
2+ $ finder = Symfony \CS \Finder \DefaultFinder::create ()
3+ ->files ()
4+ ->in ('src ' )
5+ ->in ('tests ' )
6+ ->name ('*.php ' );
7+
8+ return Symfony \CS \Config \Config::create ()
9+ ->level (\Symfony \CS \FixerInterface::NONE_LEVEL )
10+ ->fixers (
11+ array (
12+ 'duplicate_semicolon ' ,
13+ 'empty_return ' ,
14+ 'extra_empty_lines ' ,
15+ 'join_function ' ,
16+ 'list_commas ' ,
17+ 'no_blank_lines_after_class_opening ' ,
18+ 'no_empty_lines_after_phpdocs ' ,
19+ 'phpdoc_indent ' ,
20+ 'phpdoc_no_access ' ,
21+ 'phpdoc_no_empty_return ' ,
22+ 'phpdoc_no_package ' ,
23+ 'phpdoc_params ' ,
24+ 'phpdoc_scalar ' ,
25+ 'phpdoc_to_comment ' ,
26+ 'phpdoc_trim ' ,
27+ 'return ' ,
28+ 'self_accessor ' ,
29+ 'single_quote ' ,
30+ 'spaces_before_semicolon ' ,
31+ 'spaces_cast ' ,
32+ 'ternary_spaces ' ,
33+ 'trim_array_spaces ' ,
34+ 'unused_use ' ,
35+ 'whitespacy_lines ' ,
36+ 'align_double_arrow ' ,
37+ 'align_equals ' ,
38+ 'concat_with_spaces ' ,
39+ 'short_array_syntax '
40+ )
41+ )
42+ ->finder ($ finder );
43+
You can’t perform that action at this time.
0 commit comments