Skip to content

Commit

Permalink
adjust php cs fixer configuration to not want to change the code to b…
Browse files Browse the repository at this point in the history
…e incompatible with PHP 7
  • Loading branch information
dbu committed Oct 2, 2024
1 parent ba03180 commit 0d168d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
->setRiskyAllowed(true)
->setRules([
'@Symfony' => true,
'single_line_throw' => false,
'single_line_throw' => false,
'trailing_comma_in_multiline' => false, // for methods this is incompatible with PHP 7
])
->setFinder($finder)
;

0 comments on commit 0d168d2

Please sign in to comment.