Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03deb24 commit 29c1851Copy full SHA for 29c1851
1 file changed
.php_cs
@@ -14,9 +14,19 @@ return PhpCsFixer\Config::create()
14
->setFinder($finder)
15
->setRules(array(
16
'@Symfony' => true,
17
+ '@Symfony:risky' => false,
18
+ 'array_syntax' => array('syntax' => 'long'),
19
'binary_operator_spaces' => array(
20
'align_double_arrow' => false,
21
),
22
+ 'combine_consecutive_unsets' => true,
23
+ 'no_useless_else' => true,
24
+ 'no_useless_return' => true,
25
+ 'ordered_imports' => true,
26
+ 'php_unit_strict' => true,
27
+ 'phpdoc_short_description' => false,
28
'phpdoc_summary' => false,
29
+ 'psr4' => true,
30
+ 'strict_comparison' => true,
31
))
32
;
0 commit comments