Skip to content

Commit

Permalink
.php-cs-fixer.php: use PSR12 instead of Symfony
Browse files Browse the repository at this point in the history
Symfony rules are constantly changing and lead to false-positives. PSR12 is more stable.
  • Loading branch information
k00ni authored Nov 22, 2024
1 parent e7ac9c2 commit 63c8d0f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
->setFinder($finder)
->setRiskyAllowed(true)
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'@PSR12' => true,
'phpdoc_summary' => false,
])
;
Expand Down

0 comments on commit 63c8d0f

Please sign in to comment.