Skip to content

Commit

Permalink
Merge pull request #261 from ergebnis/feature/depends
Browse files Browse the repository at this point in the history
Enhancement: Configure phpdoc_order_by_value fixer to order depends annotations
  • Loading branch information
ergebnis-bot committed Dec 8, 2020
2 parents 95cc40a + 86c80e6 commit 9085ba9
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 @@ -15,6 +15,7 @@ For a full diff see [`2.5.3...main`][2.5.3...main].
* Configured `phpdoc_order_by_value` fixer to order `@uses` annotations by value ([#258]), by [@localheinz]
* Configured `phpdoc_order_by_value` fixer to order `@author` annotations by value ([#259]), by [@localheinz]
* Configured `phpdoc_order_by_value` fixer to order `@coversNothing` annotations by value ([#260]), by [@localheinz]
* Configured `phpdoc_order_by_value` fixer to order `@depends` annotations by value ([#261]), by [@localheinz]

## [`2.5.3`][2.5.3]

Expand Down Expand Up @@ -195,6 +196,7 @@ For a full diff see [`d899e77...1.0.0`][d899e77...1.0.0].
[#258]: https://github.com/ergebnis/php-cs-fixer-config/pull/258
[#259]: https://github.com/ergebnis/php-cs-fixer-config/pull/259
[#260]: https://github.com/ergebnis/php-cs-fixer-config/pull/260
[#261]: https://github.com/ergebnis/php-cs-fixer-config/pull/261

[@dependabot]: https://github.com/apps/dependabot
[@linuxjuggler]: https://github.com/linuxjuggler
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php71.php
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ final class Php71 extends AbstractRuleSet
'covers',
'coversNothing',
'dataProvider',
'depends',
'uses',
],
],
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php73.php
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ final class Php73 extends AbstractRuleSet
'covers',
'coversNothing',
'dataProvider',
'depends',
'uses',
],
],
Expand Down
1 change: 1 addition & 0 deletions src/RuleSet/Php74.php
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ final class Php74 extends AbstractRuleSet
'covers',
'coversNothing',
'dataProvider',
'depends',
'uses',
],
],
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php71Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ final class Php71Test extends AbstractRuleSetTestCase
'covers',
'coversNothing',
'dataProvider',
'depends',
'uses',
],
],
Expand Down
1 change: 1 addition & 0 deletions test/Unit/RuleSet/Php73Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ final class Php73Test extends AbstractRuleSetTestCase
'covers',
'coversNothing',
'dataProvider',
'depends',
'uses',
],
],
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 @@ -311,6 +311,7 @@ final class Php74Test extends AbstractRuleSetTestCase
'covers',
'coversNothing',
'dataProvider',
'depends',
'uses',
],
],
Expand Down

0 comments on commit 9085ba9

Please sign in to comment.