diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index 7d2c05a..7ff9e25 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -28,7 +28,13 @@ ), )); -$config = new FidryConfig($header, 81_000); +$config = new FidryConfig($header, 83_000); +$config->addRules([ + // TODO: see if this rule can be removed once bumping to Symfony 7+ + 'no_superfluous_phpdoc_tags' => false, + 'phpdoc_no_empty_return' => false, + 'void_return' => false, +]); $config->setCacheFile(__DIR__.'/var/.php-cs-fixer.cache'); return $config->setFinder($finder);