We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d7dab0 commit b44b8daCopy full SHA for b44b8da
1 file changed
.php-cs-fixer.dist.php
@@ -7,7 +7,9 @@
7
return (new PhpCsFixer\Config())
8
->setRules([
9
'@Symfony' => true,
10
- '@PHP80Migration' => true,
+ '@Symfony:risky' => true,
11
+ '@PHP82Migration:risky' => true,
12
+ '@PHP84Migration' => true,
13
14
'combine_consecutive_issets' => true,
15
'combine_consecutive_unsets' => true,
@@ -22,6 +24,8 @@
22
24
'phpdoc_order' => true,
23
25
'strict_comparison' => true,
26
'combine_nested_dirname' => true,
27
+ 'use_arrow_functions' => false,
28
+ 'declare_strict_types' => false,
29
])
30
->setRiskyAllowed(true)
31
->setFinder($finder)
0 commit comments