Skip to content

Commit

Permalink
Configure CS fixer to remove redundant parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmajor authored and sebastianbergmann committed Mar 8, 2022
1 parent 4710e1b commit 9b5d075
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,10 @@
'native_function_casing' => false,
'native_function_invocation' => false,
'native_function_type_declaration_casing' => true,
'new_with_braces' => false,
'new_with_braces' => [
'named_class' => false,
'anonymous_class' => false,
],
'no_alias_functions' => true,
'no_alias_language_construct_call' => true,
'no_alternative_syntax' => true,
Expand Down

0 comments on commit 9b5d075

Please sign in to comment.