Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancement: Revert removal of Php74 rule set #773

Merged
merged 1 commit into from
May 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

For a full diff see [`5.5.2...main`][5.5.2...main].

### Changed

- Reverted removal of `Config\Ruleset\Php74` rule set ([#773]), by [@localheinz]

## [`5.5.2`][5.5.2]

For a full diff see [`5.5.1...5.5.2`][5.5.1...5.5.2].
Expand Down Expand Up @@ -937,6 +941,7 @@ For a full diff see [`d899e77...1.0.0`][d899e77...1.0.0].
[#751]: https://github.com/ergebnis/php-cs-fixer-config/pull/751
[#764]: https://github.com/ergebnis/php-cs-fixer-config/pull/764
[#765]: https://github.com/ergebnis/php-cs-fixer-config/pull/765
[#773]: https://github.com/ergebnis/php-cs-fixer-config/pull/773

[@dependabot]: https://github.com/apps/dependabot
[@linuxjuggler]: https://github.com/linuxjuggler
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ composer require --dev ergebnis/php-cs-fixer-config

Pick one of the rule sets:

- [`Ergebnis\PhpCsFixer\RuleSet\Php74`](src/RuleSet/Php74.php)
- [`Ergebnis\PhpCsFixer\RuleSet\Php80`](src/RuleSet/Php80.php)
- [`Ergebnis\PhpCsFixer\RuleSet\Php81`](src/RuleSet/Php81.php)
- [`Ergebnis\PhpCsFixer\RuleSet\Php82`](src/RuleSet/Php82.php)
Expand Down
8 changes: 8 additions & 0 deletions psalm-baseline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
<code>__construct</code>
</PossiblyUnusedMethod>
</file>
<file src="src/RuleSet/Php74.php">
<NonInvariantDocblockPropertyType>
<code>$rules</code>
</NonInvariantDocblockPropertyType>
<UnusedClass>
<code>Php74</code>
</UnusedClass>
</file>
<file src="src/RuleSet/Php80.php">
<NonInvariantDocblockPropertyType>
<code>$rules</code>
Expand Down
Loading