We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc4213b commit 83abfc1Copy full SHA for 83abfc1
.php-cs-fixer.php
@@ -28,7 +28,13 @@
28
),
29
));
30
31
-$config = new FidryConfig($header, 81_000);
+$config = new FidryConfig($header, 83_000);
32
+$config->addRules([
33
+ // TODO: see if this rule can be removed once bumping to Symfony 7+
34
+ 'no_superfluous_phpdoc_tags' => false,
35
+ 'phpdoc_no_empty_return' => false,
36
+ 'void_return' => false,
37
+]);
38
$config->setCacheFile(__DIR__.'/var/.php-cs-fixer.cache');
39
40
return $config->setFinder($finder);
0 commit comments