Skip to content

Commit

Permalink
Enhancement: Configure phpdoc_order_by_value fixer to include mixin i…
Browse files Browse the repository at this point in the history
…n annotations option
  • Loading branch information
localheinz committed Jul 11, 2022
1 parent 76b799e commit 922e41a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ For a full diff see [`4.4.0...main`][4.4.0...main].
- Configured `no_unneeded_control_parentheses` fixer to include `negative_instanceof` and `others` in the `statements` option ([#625]), by [@localheinz]
- Configured `trailing_comma_in_multiline` fixer to include `match` in the `elements` option ([#626]), by [@localheinz]
- Configured `single_space_after_construct` fixer to include `type_colon` in the `constructs` option ([#627]), by [@localheinz]
- Configured `phpdoc_order_by_value` fixer to include `mixin` in the `annotations` option ([#628]), by [@localheinz]

## [`4.4.0`][4.4.0]

Expand Down Expand Up @@ -653,6 +654,7 @@ For a full diff see [`d899e77...1.0.0`][d899e77...1.0.0].
[#625]: https://github.com/ergebnis/php-cs-fixer-config/pull/625
[#626]: https://github.com/ergebnis/php-cs-fixer-config/pull/626
[#627]: https://github.com/ergebnis/php-cs-fixer-config/pull/627
[#628]: https://github.com/ergebnis/php-cs-fixer-config/pull/628

[@dependabot]: https://github.com/apps/dependabot
[@linuxjuggler]: https://github.com/linuxjuggler
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php74.php
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,7 @@ final class Php74 extends AbstractRuleSet implements ExplicitRuleSet
'group',
'internal',
'method',
'mixin',
'property',
'property-read',
'property-write',
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php80.php
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,7 @@ final class Php80 extends AbstractRuleSet implements ExplicitRuleSet
'group',
'internal',
'method',
'mixin',
'property',
'property-read',
'property-write',
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php81.php
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,7 @@ final class Php81 extends AbstractRuleSet implements ExplicitRuleSet
'group',
'internal',
'method',
'mixin',
'property',
'property-read',
'property-write',
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php74Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,7 @@ final class Php74Test extends ExplicitRuleSetTestCase
'group',
'internal',
'method',
'mixin',
'property',
'property-read',
'property-write',
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php80Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,7 @@ final class Php80Test extends ExplicitRuleSetTestCase
'group',
'internal',
'method',
'mixin',
'property',
'property-read',
'property-write',
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php81Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,7 @@ final class Php81Test extends ExplicitRuleSetTestCase
'group',
'internal',
'method',
'mixin',
'property',
'property-read',
'property-write',
Expand Down

0 comments on commit 922e41a

Please sign in to comment.