From 3c83fc91392bb0e4311f4683b50074ec0ff3df98 Mon Sep 17 00:00:00 2001 From: "J. King" Date: Wed, 22 Mar 2023 23:14:19 -0400 Subject: [PATCH] Update php-cs-fixer rules --- .php-cs-fixer.dist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index b545600..070f4f8 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -53,7 +53,7 @@ $rules = [ 'pow_to_exponentiation' => true, 'set_type_to_cast' => true, 'standardize_not_equals' => true, - 'trailing_comma_in_multiline_array' => true, + 'trailing_comma_in_multiline' => ['elements' => ["arrays"]], 'unary_operator_spaces' => true, 'yoda_style' => false, // PSR standard to apply