From c34d3f102f312d2f1173bb78566306f2bd093191 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Sat, 29 Jun 2024 09:58:39 +0200 Subject: [PATCH] [TASK] Remove another PHP-8-only setting from the PHP-CS-Fixer config --- config/php-cs-fixer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/php-cs-fixer.php b/config/php-cs-fixer.php index bc449156..b5b27a68 100644 --- a/config/php-cs-fixer.php +++ b/config/php-cs-fixer.php @@ -20,7 +20,7 @@ '@PHPUnit84Migration:risky' => true, // overwrite the PER2 defaults to restore compatibility with PHP 7.x - 'trailing_comma_in_multiline' => ['elements' => ['arrays', 'match']], + 'trailing_comma_in_multiline' => ['elements' => ['arrays']], 'php_unit_construct' => true, 'php_unit_dedicate_assert' => ['target' => 'newest'],