Skip to content

Commit

Permalink
Update rule order
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz committed Sep 14, 2021
1 parent 45f5095 commit acd88f0
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 @@ -18,22 +18,22 @@
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'concat_space' => ['spacing' => 'one'],
'class_definition' => false,
'concat_space' => ['spacing' => 'one'],
'declare_strict_types' => true,
'function_declaration' => ['closure_function_spacing' => 'none'],
'header_comment' => ['header' => $header],
'native_function_invocation' => ['include' => ['@internal']],
'no_superfluous_phpdoc_tags' => ['allow_mixed' => true, 'remove_inheritdoc' => true],
'no_useless_return' => true,
'no_useless_else' => true,
'no_useless_return' => true,
'php_unit_strict' => true,
'phpdoc_align' => ['align' => 'left'],
'phpdoc_order' => true,
'phpdoc_to_comment' => false,
'phpdoc_types_order' => false,
'strict_comparison' => true,
'single_line_throw' => false,
'strict_comparison' => true,
'strict_param' => true,
])
->setFinder(
Expand Down

0 comments on commit acd88f0

Please sign in to comment.