Skip to content

Commit

Permalink
Merge pull request #591 from ergebnis/dependabot/composer/friendsofph…
Browse files Browse the repository at this point in the history
…p/php-cs-fixer-3.8.0

composer(deps): bump friendsofphp/php-cs-fixer from 3.7.0 to 3.8.0
  • Loading branch information
localheinz authored Mar 19, 2022
2 parents 205d8f5 + 61d51f5 commit 5d94b8c
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 14 deletions.
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 [`4.3.0...main`][4.3.0...main].

### Changed

- Updated `friendsofphp/php-cs-fixer` ([#591]), by [@dependabot]

## [`4.3.0`][4.3.0]

For a full diff see [`4.2.0...4.3.0`][4.2.0...4.3.0].
Expand Down Expand Up @@ -619,6 +623,7 @@ For a full diff see [`d899e77...1.0.0`][d899e77...1.0.0].
[#586]: https://github.com/ergebnis/php-cs-fixer-config/pull/586
[#587]: https://github.com/ergebnis/php-cs-fixer-config/pull/587
[#588]: https://github.com/ergebnis/php-cs-fixer-config/pull/588
[#591]: https://github.com/ergebnis/php-cs-fixer-config/pull/591

[@dependabot]: https://github.com/apps/dependabot
[@linuxjuggler]: https://github.com/linuxjuggler
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"require": {
"php": "^7.4 || ^8.0",
"ext-filter": "*",
"friendsofphp/php-cs-fixer": "~3.7.0"
"friendsofphp/php-cs-fixer": "~3.8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.24.0",
Expand Down
26 changes: 13 additions & 13 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/RuleSet/Php74.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ final class Php74 extends AbstractRuleSet implements ExplicitRuleSet
'control_structure_continuation_position' => [
'position' => 'same_line',
],
'date_time_create_from_format_call' => false,
'date_time_immutable' => true,
'declare_equal_normalize' => [
'space' => 'none',
Expand Down Expand Up @@ -715,6 +716,7 @@ final class Php74 extends AbstractRuleSet implements ExplicitRuleSet
'trim_array_spaces' => true,
'types_spaces' => [
'space' => 'none',
'space_multiple_catch' => null,
],
'unary_operator_spaces' => true,
'use_arrow_functions' => false,
Expand Down
2 changes: 2 additions & 0 deletions src/RuleSet/Php80.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ final class Php80 extends AbstractRuleSet implements ExplicitRuleSet
'control_structure_continuation_position' => [
'position' => 'same_line',
],
'date_time_create_from_format_call' => false,
'date_time_immutable' => true,
'declare_equal_normalize' => [
'space' => 'none',
Expand Down Expand Up @@ -716,6 +717,7 @@ final class Php80 extends AbstractRuleSet implements ExplicitRuleSet
'trim_array_spaces' => true,
'types_spaces' => [
'space' => 'none',
'space_multiple_catch' => null,
],
'unary_operator_spaces' => true,
'use_arrow_functions' => false,
Expand Down
2 changes: 2 additions & 0 deletions src/RuleSet/Php81.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ final class Php81 extends AbstractRuleSet implements ExplicitRuleSet
'control_structure_continuation_position' => [
'position' => 'same_line',
],
'date_time_create_from_format_call' => false,
'date_time_immutable' => true,
'declare_equal_normalize' => [
'space' => 'none',
Expand Down Expand Up @@ -719,6 +720,7 @@ final class Php81 extends AbstractRuleSet implements ExplicitRuleSet
'trim_array_spaces' => true,
'types_spaces' => [
'space' => 'none',
'space_multiple_catch' => null,
],
'unary_operator_spaces' => true,
'use_arrow_functions' => false,
Expand Down
2 changes: 2 additions & 0 deletions test/Unit/RuleSet/Php74Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ final class Php74Test extends ExplicitRuleSetTestCase
'control_structure_continuation_position' => [
'position' => 'same_line',
],
'date_time_create_from_format_call' => false,
'date_time_immutable' => true,
'declare_equal_normalize' => [
'space' => 'none',
Expand Down Expand Up @@ -721,6 +722,7 @@ final class Php74Test extends ExplicitRuleSetTestCase
'trim_array_spaces' => true,
'types_spaces' => [
'space' => 'none',
'space_multiple_catch' => null,
],
'unary_operator_spaces' => true,
'use_arrow_functions' => false,
Expand Down
2 changes: 2 additions & 0 deletions test/Unit/RuleSet/Php80Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ final class Php80Test extends ExplicitRuleSetTestCase
'control_structure_continuation_position' => [
'position' => 'same_line',
],
'date_time_create_from_format_call' => false,
'date_time_immutable' => true,
'declare_equal_normalize' => [
'space' => 'none',
Expand Down Expand Up @@ -722,6 +723,7 @@ final class Php80Test extends ExplicitRuleSetTestCase
'trim_array_spaces' => true,
'types_spaces' => [
'space' => 'none',
'space_multiple_catch' => null,
],
'unary_operator_spaces' => true,
'use_arrow_functions' => false,
Expand Down
2 changes: 2 additions & 0 deletions test/Unit/RuleSet/Php81Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ final class Php81Test extends ExplicitRuleSetTestCase
'control_structure_continuation_position' => [
'position' => 'same_line',
],
'date_time_create_from_format_call' => false,
'date_time_immutable' => true,
'declare_equal_normalize' => [
'space' => 'none',
Expand Down Expand Up @@ -725,6 +726,7 @@ final class Php81Test extends ExplicitRuleSetTestCase
'trim_array_spaces' => true,
'types_spaces' => [
'space' => 'none',
'space_multiple_catch' => null,
],
'unary_operator_spaces' => true,
'use_arrow_functions' => false,
Expand Down

0 comments on commit 5d94b8c

Please sign in to comment.