Skip to content

Commit

Permalink
Merge pull request #586 from ergebnis/feature/phpdoc-align
Browse files Browse the repository at this point in the history
Enhancement: Configure `phpdoc_align` fixer to align more tags
  • Loading branch information
localheinz committed Mar 8, 2022
2 parents a2ffb35 + 02e1a2a commit 8dc9797
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -13,6 +13,7 @@ For a full diff see [`4.2.0...main`][4.2.0...main].
- Configured `blank_line_before_statement` fixer to include additional statements ([#581]), by [@localheinz]
- Configured `no_unneeded_control_parentheses` fixer to include additional statements ([#583]), by [@localheinz]
- Configured `ordered_class_elements` fixer to order more elements ([#584]), by [@localheinz]
- Configured `phpdoc_aling` fixer to align more tags ([#586]), by [@localheinz]

## [`4.2.0`][4.2.0]

Expand Down Expand Up @@ -607,6 +608,7 @@ For a full diff see [`d899e77...1.0.0`][d899e77...1.0.0].
[#581]: https://github.com/ergebnis/php-cs-fixer-config/pull/581
[#583]: https://github.com/ergebnis/php-cs-fixer-config/pull/583
[#584]: https://github.com/ergebnis/php-cs-fixer-config/pull/584
[#586]: https://github.com/ergebnis/php-cs-fixer-config/pull/586

[@dependabot]: https://github.com/apps/dependabot
[@linuxjuggler]: https://github.com/linuxjuggler
Expand Down
2 changes: 2 additions & 0 deletions src/RuleSet/Php74.php
Expand Up @@ -468,6 +468,8 @@ final class Php74 extends AbstractRuleSet implements ExplicitRuleSet
'method',
'param',
'property',
'property-read',
'property-write',
'return',
'throws',
'type',
Expand Down
2 changes: 2 additions & 0 deletions src/RuleSet/Php80.php
Expand Up @@ -468,6 +468,8 @@ final class Php80 extends AbstractRuleSet implements ExplicitRuleSet
'method',
'param',
'property',
'property-read',
'property-write',
'return',
'throws',
'type',
Expand Down
2 changes: 2 additions & 0 deletions src/RuleSet/Php81.php
Expand Up @@ -469,6 +469,8 @@ final class Php81 extends AbstractRuleSet implements ExplicitRuleSet
'method',
'param',
'property',
'property-read',
'property-write',
'return',
'throws',
'type',
Expand Down
2 changes: 2 additions & 0 deletions test/Unit/RuleSet/Php74Test.php
Expand Up @@ -474,6 +474,8 @@ final class Php74Test extends ExplicitRuleSetTestCase
'method',
'param',
'property',
'property-read',
'property-write',
'return',
'throws',
'type',
Expand Down
2 changes: 2 additions & 0 deletions test/Unit/RuleSet/Php80Test.php
Expand Up @@ -474,6 +474,8 @@ final class Php80Test extends ExplicitRuleSetTestCase
'method',
'param',
'property',
'property-read',
'property-write',
'return',
'throws',
'type',
Expand Down
2 changes: 2 additions & 0 deletions test/Unit/RuleSet/Php81Test.php
Expand Up @@ -475,6 +475,8 @@ final class Php81Test extends ExplicitRuleSetTestCase
'method',
'param',
'property',
'property-read',
'property-write',
'return',
'throws',
'type',
Expand Down

0 comments on commit 8dc9797

Please sign in to comment.