From f37fc18f5309c96fd2ff9e3747505d46dd4f49bd Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 31 May 2023 16:54:01 +0200 Subject: [PATCH] Disable phpdoc_to_comment fixer (because it renders psalm-suppress annotations useless) --- .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 e3bd27b631c..62d53762667 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -273,7 +273,7 @@ 'phpdoc_summary' => true, 'phpdoc_tag_casing' => true, 'phpdoc_tag_type' => true, - 'phpdoc_to_comment' => true, + 'phpdoc_to_comment' => false, 'phpdoc_trim' => true, 'phpdoc_trim_consecutive_blank_line_separation' => true, 'phpdoc_types' => ['groups' => ['simple', 'meta']],