Skip to content

Commit

Permalink
Bump php-cs-fixer to v3.35
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbalandan committed Oct 13, 2023
1 parent b875f3c commit 2448ca9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"require": {
"php": "^7.4 || ^8.0",
"ext-tokenizer": "*",
"friendsofphp/php-cs-fixer": "^3.34",
"friendsofphp/php-cs-fixer": "^3.35",
"nexusphp/cs-config": "^3.6"
},
"require-dev": {
Expand Down
7 changes: 4 additions & 3 deletions src/CodeIgniter4.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public function __construct()
'fopen_flag_order' => true,
'fopen_flags' => ['b_mode' => true],
'full_opening_tag' => true,
'fully_qualified_strict_types' => true,
'fully_qualified_strict_types' => ['leading_backslash_in_global_namespace' => false],
'function_declaration' => [
'closure_function_spacing' => 'one',
'closure_fn_spacing' => 'one',
Expand Down Expand Up @@ -453,8 +453,9 @@ public function __construct()
'uses',
],
],
'phpdoc_param_order' => false,
'phpdoc_return_self_reference' => [
'phpdoc_param_order' => false,
'phpdoc_readonly_class_comment_to_keyword' => false,
'phpdoc_return_self_reference' => [
'replacements' => [
'this' => '$this',
'@this' => '$this',
Expand Down

0 comments on commit 2448ca9

Please sign in to comment.