Skip to content

Commit

Permalink
Merge pull request #72 from TheDragonCode/1.x
Browse files Browse the repository at this point in the history
Fixed docblocks codestyle
  • Loading branch information
Andrey Helldar committed Mar 1, 2022
2 parents 8305e47 + 1dce5f9 commit 104f680
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions rules/main.php
Expand Up @@ -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' => [
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 104f680

Please sign in to comment.