Skip to content

Commit 5960eaa

Browse files
committed
Update php-cs-fixer ruleset
1 parent ecb99b3 commit 5960eaa

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

.php_cs

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,26 @@ $finder = Symfony\CS\Finder\DefaultFinder::create()
66

77
return Symfony\CS\Config\Config::create()
88
->fixers([
9-
'strict_param',
10-
'strict',
11-
'short_array_syntax',
12-
'php_unit_strict',
13-
'php_unit_construct',
14-
'php4_constructor',
15-
'ordered_use',
16-
'newline_after_open_tag',
17-
'multiline_spaces_before_semicolon',
18-
'ereg_to_preg',
19-
'concat_with_spaces',
209
'align_double_arrow',
10+
'concat_with_spaces',
11+
'ereg_to_preg',
12+
'multiline_spaces_before_semicolon',
13+
'newline_after_open_tag',
14+
'ordered_use',
15+
'php4_constructor',
16+
'php_unit_construct',
17+
'php_unit_strict',
18+
'short_array_syntax',
19+
'strict',
20+
'strict_param',
2121

22-
'-unalign_double_arrow',
23-
'-unary_operators_spaces',
24-
'-phpdoc_separation',
2522
'-concat_without_spaces',
26-
'-phpdoc_params',
2723
'-linefeed',
24+
'-phpdoc_no_empty_return',
25+
'-phpdoc_params',
26+
'-phpdoc_separation',
2827
'-pre_increment',
28+
'-unalign_double_arrow',
29+
'-unary_operators_spaces',
2930
])
3031
->finder($finder);

0 commit comments

Comments
 (0)