Skip to content

Commit

Permalink
Fixes for php-cs-fixer v3.49 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
gharlan authored Feb 4, 2024
1 parent 9b819f5 commit 42a1a38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
],
"require": {
"php": "^8.1",
"friendsofphp/php-cs-fixer": "^3.47.1",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.19.0"
"friendsofphp/php-cs-fixer": "^3.49.0",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.20.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ public function setRules(array $rules): ConfigInterface
'declare_strict_types' => false,
'echo_tag_syntax' => ['format' => 'short'],
'empty_loop_condition' => false,
'escape_implicit_backslashes' => true,
'global_namespace_import' => [
'import_constants' => true,
'import_functions' => true,
Expand Down Expand Up @@ -94,6 +93,7 @@ public function setRules(array $rules): ConfigInterface
'single_line_empty_body' => true,
'statement_indentation' => false,
'static_lambda' => true,
'string_implicit_backslashes' => ['single_quoted' => 'ignore'],
'trailing_comma_in_multiline' => [
'after_heredoc' => true,
'elements' => ['arguments', 'arrays', 'match', 'parameters'],
Expand Down

0 comments on commit 42a1a38

Please sign in to comment.