Enforce single-line PhpDoc for properties where possible

This commit is contained in:
Dylan K. Taylor
2021-10-21 20:32:37 +01:00
parent dc07ac33d3
commit 986b4e0651
2 changed files with 7 additions and 2 deletions

View File

@ -62,6 +62,11 @@ return (new PhpCsFixer\Config)
],
'sort_algorithm' => 'alpha'
],
'phpdoc_line_span' => [
'property' => 'single',
'method' => null,
'const' => null
],
'phpdoc_trim' => true,
'phpdoc_trim_consecutive_blank_line_separation' => true,
'single_import_per_statement' => true,