From fe26cfbdceee519e76879dadde5ab4c08a973cc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 23 Sep 2022 11:42:44 +0200 Subject: [PATCH] Enhancement: Use no_trailing_comma_in_singleline instead of deprecated fixers --- .php-cs-fixer.dist.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 6ed2a95cc09..dea9ac7b822 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -161,8 +161,7 @@ 'no_superfluous_phpdoc_tags' => [ 'allow_mixed' => true, ], - 'no_trailing_comma_in_list_call' => true, - 'no_trailing_comma_in_singleline_array' => true, + 'no_trailing_comma_in_singleline' => true, 'no_trailing_whitespace' => true, 'no_trailing_whitespace_in_comment' => true, 'no_trailing_whitespace_in_string' => true,