From 1dce5f913fc4f3d95c619b436d2f9c118d66ba1c Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Wed, 2 Mar 2022 01:59:37 +0300 Subject: [PATCH] Fixed docblocks codestyle --- rules/main.php | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) 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,