Skip to content

Commit

Permalink
Fix deprecation issues for PHP CS Fixer (#38)
Browse files Browse the repository at this point in the history
Co-authored-by: Tom de Wit <[email protected]>
  • Loading branch information
ttomdewit and gs-tdewit authored Nov 30, 2023
1 parent 6011952 commit 420c26a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
'explicit_indirect_variable' => true,
'explicit_string_variable' => true,
'fully_qualified_strict_types' => true,
'function_typehint_space' => true,
'type_declaration_spaces' => true,
'general_phpdoc_tag_rename' => [
'replacements' => ['inheritDocs' => 'inheritDoc'],
],
Expand All @@ -59,7 +59,7 @@
'strategy' => 'no_multi_line',
],
'native_function_casing' => true,
'native_function_type_declaration_casing' => true,
'native_type_declaration_casing' => true,
'no_alias_language_construct_call' => true,
'no_alternative_syntax' => true,
'no_blank_lines_after_phpdoc' => true,
Expand Down Expand Up @@ -96,7 +96,7 @@
'yield_from',
],
],
'no_unneeded_curly_braces' => [
'no_unneeded_braces' => [
'namespaces' => false,
],
'no_unneeded_import_alias' => true,
Expand Down

0 comments on commit 420c26a

Please sign in to comment.