Skip to content

Commit

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

composer(deps): Bump friendsofphp/php-cs-fixer from 3.22.0 to 3.23.0
  • Loading branch information
localheinz authored Aug 14, 2023
2 parents a2c261b + db7b74b commit 30136f3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"require": {
"php": "~8.1.0 || ~8.2.0",
"friendsofphp/php-cs-fixer": "~3.22.0"
"friendsofphp/php-cs-fixer": "~3.23.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.35.0",
Expand Down
14 changes: 7 additions & 7 deletions composer.lock

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

3 changes: 2 additions & 1 deletion src/RuleSet/Custom.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ final class Custom extends AbstractRuleSet implements ExplicitRuleSet
'no_space_around_double_colon' => false,
'no_spaces_after_function_name' => false,
'no_spaces_around_offset' => false,
'no_spaces_inside_parenthesis' => false,
'no_superfluous_elseif' => false,
'no_superfluous_phpdoc_tags' => false,
'no_trailing_comma_in_singleline' => false,
Expand Down Expand Up @@ -228,6 +227,7 @@ final class Custom extends AbstractRuleSet implements ExplicitRuleSet
'random_api_migration' => false,
'regular_callable_call' => false,
'return_assignment' => false,
'return_to_yield_from' => false,
'return_type_declaration' => false,
'self_accessor' => false,
'self_static_accessor' => false,
Expand All @@ -249,6 +249,7 @@ final class Custom extends AbstractRuleSet implements ExplicitRuleSet
'single_space_around_construct' => false,
'single_trait_insert_per_statement' => false,
'space_after_semicolon' => false,
'spaces_inside_parentheses' => false,
'standardize_increment' => false,
'standardize_not_equals' => false,
'statement_indentation' => false,
Expand Down
3 changes: 2 additions & 1 deletion test/Unit/RuleSet/CustomTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ final class CustomTest extends ExplicitRuleSetTestCase
'no_space_around_double_colon' => false,
'no_spaces_after_function_name' => false,
'no_spaces_around_offset' => false,
'no_spaces_inside_parenthesis' => false,
'no_superfluous_elseif' => false,
'no_superfluous_phpdoc_tags' => false,
'no_trailing_comma_in_singleline' => false,
Expand Down Expand Up @@ -233,6 +232,7 @@ final class CustomTest extends ExplicitRuleSetTestCase
'random_api_migration' => false,
'regular_callable_call' => false,
'return_assignment' => false,
'return_to_yield_from' => false,
'return_type_declaration' => false,
'self_accessor' => false,
'self_static_accessor' => false,
Expand All @@ -254,6 +254,7 @@ final class CustomTest extends ExplicitRuleSetTestCase
'single_space_around_construct' => false,
'single_trait_insert_per_statement' => false,
'space_after_semicolon' => false,
'spaces_inside_parentheses' => false,
'standardize_increment' => false,
'standardize_not_equals' => false,
'statement_indentation' => false,
Expand Down

0 comments on commit 30136f3

Please sign in to comment.