We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d7f43a commit 531ff9fCopy full SHA for 531ff9f
.php_cs.dist
@@ -16,6 +16,7 @@ $config
16
'binary_operator_spaces' => false,
17
'concat_space' => array('spacing' => 'one'),
18
'increment_style' => false,
19
+ 'no_alias_functions' => true,
20
'no_useless_else' => true,
21
'no_useless_return' => true,
22
'ordered_imports' => true,
@@ -24,9 +25,10 @@ $config
24
25
'phpdoc_summary' => false,
26
'pre_increment' => false,
27
'simplified_null_return' => false,
- 'trailing_comma_in_multiline_array' => false,
28
+ 'trailing_comma_in_multiline_array' => true,
29
'yoda_style' => null,
30
))
31
+ ->setRiskyAllowed(true)
32
->setFinder($finder)
33
;
34
0 commit comments