Skip to content

Commit

Permalink
feat: fix deprecated php-cs-fixer rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris8934 committed Nov 20, 2023
1 parent b67efc5 commit b06cbb9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@
'combine_consecutive_issets' => true,
'combine_consecutive_unsets' => true,
'comment_to_phpdoc' => true,
'compact_nullable_typehint' => true,
'compact_nullable_type_declaration' => true,
'explicit_indirect_variable' => true,
'explicit_string_variable' => false,
'fully_qualified_strict_types' => true,
'function_typehint_space' => true,
'type_declaration_spaces' => true,
'heredoc_to_nowdoc' => true,
'include' => true,
'lowercase_cast' => true,
'method_chaining_indentation' => true,
'multiline_comment_opening_closing' => true,
'native_function_casing' => true,
'new_with_braces' => true,
'new_with_parentheses' => true,
'no_alias_functions' => true,
'no_alternative_syntax' => true,
'no_blank_lines_after_class_opening' => true,
Expand All @@ -50,7 +50,7 @@
'no_superfluous_elseif' => true,
'no_trailing_comma_in_singleline' => true,
'no_unneeded_control_parentheses' => true,
'no_unneeded_curly_braces' => true,
'no_unneeded_braces' => true,
'no_unneeded_final_method' => true,
'no_unreachable_default_argument_value' => true,
'no_unused_imports' => true,
Expand Down

0 comments on commit b06cbb9

Please sign in to comment.