no_superfluous_phpdoc_tags=true is too agressive. Some "superfluous" phpdoc tags are extremely useful for IDE type hinting.
This commit is contained in:
parent
9894f68a6b
commit
162e4ea1ea
2 changed files with 2 additions and 2 deletions
|
|
@ -14,7 +14,7 @@ return (new PhpCsFixer\Config)
|
|||
'no_php4_constructor' => true,
|
||||
'no_unused_imports' => true,
|
||||
'no_useless_else' => true,
|
||||
'no_superfluous_phpdoc_tags' => true,
|
||||
'no_superfluous_phpdoc_tags' => false,
|
||||
'void_return' => true,
|
||||
'yoda_style' => false,
|
||||
])
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ return (new PhpCsFixer\Config)
|
|||
'no_php4_constructor' => true,
|
||||
'no_unused_imports' => true,
|
||||
'no_useless_else' => true,
|
||||
'no_superfluous_phpdoc_tags' => true,
|
||||
'no_superfluous_phpdoc_tags' => false,
|
||||
'void_return' => true,
|
||||
'yoda_style' => false,
|
||||
])
|
||||
|
|
|
|||
Loading…
Reference in a new issue