diff --git a/rules/main.php b/rules/main.php index 5b62a7b..43c6b24 100644 --- a/rules/main.php +++ b/rules/main.php @@ -109,12 +109,12 @@ 'elements' => ['const', 'property'], ], - 'multiline_comment_opening_closing' => true, + 'multiline_comment_opening_closing' => false, 'no_empty_comment' => true, 'single_line_comment_style' => [ - 'comment_types' => ['asterisk'], + 'comment_types' => ['asterisk', 'hash'], ], 'control_structure_continuation_position' => [ @@ -408,7 +408,15 @@ ], 'phpdoc_to_comment' => [ - 'ignored_tags' => [], + 'ignored_tags' => [ + 'method', + 'mixin', + 'property', + 'property-read', + 'property-write', + 'see', + 'var', + ], ], 'phpdoc_trim_consecutive_blank_line_separation' => true,