diff --git a/.php_cs.dist b/.php_cs.dist index 3879e77..21a00e5 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -12,7 +12,12 @@ $finder = PhpCsFixer\Finder::create() ; return PhpCsFixer\Config::create() ->setRules([ - '@Symfony' => true, - 'array_syntax' => ['syntax' => 'short'], + '@PSR2' => true, + '@Symfony' => true, + 'array_syntax' => [ + 'syntax' => 'short', + ], + 'no_empty_phpdoc' => true, + 'no_superfluous_phpdoc_tags' => true, ]) ->setFinder($finder);