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 c1720f1 commit aedb436Copy full SHA for aedb436
.php_cs.dist
@@ -12,7 +12,12 @@ $finder = PhpCsFixer\Finder::create()
12
;
13
return PhpCsFixer\Config::create()
14
->setRules([
15
- '@Symfony' => true,
16
- 'array_syntax' => ['syntax' => 'short'],
+ '@PSR2' => true,
+ '@Symfony' => true,
17
+ 'array_syntax' => [
18
+ 'syntax' => 'short',
19
+ ],
20
+ 'no_empty_phpdoc' => true,
21
+ 'no_superfluous_phpdoc_tags' => true,
22
])
23
->setFinder($finder);
0 commit comments