From 5909f2e86ca565b3db2022243aea28e2a6eac815 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Mon, 11 Dec 2023 19:34:15 +0545 Subject: [PATCH] Allow 'mixed' PHPdoc tags --- .php-cs-fixer.dist.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index eb32278a05..5051da5cf5 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -6,7 +6,8 @@ ->in(__DIR__); $config->setRules([ '@PSR1' => true, - '@Symfony' => true + '@Symfony' => true, + 'no_superfluous_phpdoc_tags' => ['allow_mixed' => true] ]); return $config; \ No newline at end of file