Skip to content

Commit b44b8da

Browse files
committed
cs: upd rules
1 parent 8d7dab0 commit b44b8da

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.php-cs-fixer.dist.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
return (new PhpCsFixer\Config())
88
->setRules([
99
'@Symfony' => true,
10-
'@PHP80Migration' => true,
10+
'@Symfony:risky' => true,
11+
'@PHP82Migration:risky' => true,
12+
'@PHP84Migration' => true,
1113

1214
'combine_consecutive_issets' => true,
1315
'combine_consecutive_unsets' => true,
@@ -22,6 +24,8 @@
2224
'phpdoc_order' => true,
2325
'strict_comparison' => true,
2426
'combine_nested_dirname' => true,
27+
'use_arrow_functions' => false,
28+
'declare_strict_types' => false,
2529
])
2630
->setRiskyAllowed(true)
2731
->setFinder($finder)

0 commit comments

Comments
 (0)