Skip to content

Commit 531ff9f

Browse files
committed
Enhancement: Enable more fixers
1 parent 7d7f43a commit 531ff9f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.php_cs.dist

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ $config
1616
'binary_operator_spaces' => false,
1717
'concat_space' => array('spacing' => 'one'),
1818
'increment_style' => false,
19+
'no_alias_functions' => true,
1920
'no_useless_else' => true,
2021
'no_useless_return' => true,
2122
'ordered_imports' => true,
@@ -24,9 +25,10 @@ $config
2425
'phpdoc_summary' => false,
2526
'pre_increment' => false,
2627
'simplified_null_return' => false,
27-
'trailing_comma_in_multiline_array' => false,
28+
'trailing_comma_in_multiline_array' => true,
2829
'yoda_style' => null,
2930
))
31+
->setRiskyAllowed(true)
3032
->setFinder($finder)
3133
;
3234

0 commit comments

Comments
 (0)