diff --git a/.php_cs.dist b/.php_cs.dist index c27f823..6bc0706 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -19,5 +19,12 @@ return PhpCsFixer\Config::create() ], 'no_empty_phpdoc' => true, 'no_superfluous_phpdoc_tags' => true, + 'visibility_required' => [ + 'elements' => [ + 'const', + 'method', + 'property', + ], + ], ]) ->setFinder($finder);