From b8849809cfcd5f40703f0a8f4178f3992cf7df5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Tamarelle?= Date: Tue, 7 May 2024 23:48:42 +0200 Subject: [PATCH] Add nullable_type_declaration_for_default_null_value to prevent regression on non-explicit nullable --- .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 00535eb4c..1fbf5ae3f 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -34,5 +34,6 @@ ], 'no_extra_blank_lines' => true, 'no_whitespace_in_blank_line' => true, + 'nullable_type_declaration_for_default_null_value' => true, ]) ->setFinder($finder);