From d9f6516e8205789849ae1be9f0f3da5f408bbf1a Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Mon, 5 Feb 2024 16:19:05 +0100 Subject: [PATCH] Force backslashes for non imported namespaces --- .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 de555ac6dc2..220660a44a3 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -66,7 +66,7 @@ 'return_type_declaration' => true, 'static_lambda' => true, - 'fully_qualified_strict_types' => true, + 'fully_qualified_strict_types' => ['leading_backslash_in_global_namespace' => true], 'no_leading_import_slash' => true, 'no_unused_imports' => true, 'ordered_imports' => true,