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 0ccb470 commit 3171d9aCopy full SHA for 3171d9a
.php_cs.dist
@@ -14,6 +14,7 @@ $config
14
'array_syntax' => array('syntax' => 'long'),
15
'binary_operator_spaces' => false,
16
'concat_space' => array('spacing' => 'one'),
17
+ 'no_alias_functions' => true,
18
'no_useless_else' => true,
19
'no_useless_return' => true,
20
'ordered_imports' => true,
@@ -22,8 +23,9 @@ $config
22
23
'phpdoc_summary' => false,
24
'pre_increment' => false,
25
'simplified_null_return' => false,
- 'trailing_comma_in_multiline_array' => false,
26
+ 'trailing_comma_in_multiline_array' => true,
27
))
28
+ ->setRiskyAllowed(true)
29
->setFinder($finder)
30
;
31
0 commit comments