From f2cdc4f4447e55c2637c7be860592878c0ec2c16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederic=20G=2E=20=C3=98stby?= Date: Mon, 19 Dec 2022 18:37:46 +0100 Subject: [PATCH] Update php-cs-fixer rules --- .php-cs-fixer.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index 7374b6e..27237e2 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -7,18 +7,21 @@ ([ 'align_multiline_comment' => true, 'array_syntax' => ['syntax' => 'short'], + 'assign_null_coalescing_to_coalesce_equal' => true, 'blank_line_after_namespace' => true, 'blank_line_after_opening_tag' => true, 'cast_spaces' => true, 'combine_nested_dirname' => true, 'concat_space' => ['spacing' => 'one'], 'constant_case' => true, + 'dir_constant' => true, 'elseif' => true, 'encoding' => true, 'full_opening_tag' => true, 'function_declaration' => true, 'function_to_constant' => true, 'function_typehint_space' => true, + 'get_class_to_class_keyword' => true, 'heredoc_to_nowdoc' => true, 'linebreak_after_opening_tag' => true, 'list_syntax' => ['syntax' => 'short'],