From fbe18e49d1578391033be90efa401719a6d33d6a Mon Sep 17 00:00:00 2001 From: Luca Castellone Date: Wed, 15 Jan 2025 20:53:31 +0100 Subject: [PATCH] Fix php7.4 after 7.5.6 --- .php-cs-fixer.dist.php | 1 + 1 file changed, 1 insertion(+) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 1a7f83995..34cea6760 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -9,5 +9,6 @@ return (new PhpCsFixer\Config()) ->setRules([ '@PER-CS' => true, + 'trailing_comma_in_multiline' => ['elements' => ['arguments', 'array_destructuring', 'arrays']], // For PHP 7.4 compatibility ]) ->setFinder($finder);