Skip to content

Commit

Permalink
Fix: Order
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Apr 19, 2022
1 parent 724f83a commit 19ed8ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .php-cs-fixer.dist.php
Expand Up @@ -14,19 +14,19 @@
'array_syntax' => array('syntax' => 'long'),
'binary_operator_spaces' => false,
'concat_space' => array('spacing' => 'one'),
'increment_style' => false,
'no_superfluous_phpdoc_tags' => false,
'no_useless_else' => true,
'no_useless_return' => true,
'ordered_imports' => true,
'phpdoc_no_package' => false,
'phpdoc_order' => true,
'phpdoc_summary' => false,
'increment_style' => false,
'phpdoc_types_order' => array('null_adjustment' => 'none', 'sort_algorithm' => 'none'),
'simplified_null_return' => false,
'single_line_throw' => false,
'trailing_comma_in_multiline' => false,
'yoda_style' => false,
'phpdoc_types_order' => array('null_adjustment' => 'none', 'sort_algorithm' => 'none'),
'no_superfluous_phpdoc_tags' => false,
))
->setFinder($finder)
;
Expand Down

0 comments on commit 19ed8ac

Please sign in to comment.