Skip to content

Commit 19ed8ac

Browse files
committed
Fix: Order
1 parent 724f83a commit 19ed8ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.php-cs-fixer.dist.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@
1414
'array_syntax' => array('syntax' => 'long'),
1515
'binary_operator_spaces' => false,
1616
'concat_space' => array('spacing' => 'one'),
17+
'increment_style' => false,
18+
'no_superfluous_phpdoc_tags' => false,
1719
'no_useless_else' => true,
1820
'no_useless_return' => true,
1921
'ordered_imports' => true,
2022
'phpdoc_no_package' => false,
2123
'phpdoc_order' => true,
2224
'phpdoc_summary' => false,
23-
'increment_style' => false,
25+
'phpdoc_types_order' => array('null_adjustment' => 'none', 'sort_algorithm' => 'none'),
2426
'simplified_null_return' => false,
2527
'single_line_throw' => false,
2628
'trailing_comma_in_multiline' => false,
2729
'yoda_style' => false,
28-
'phpdoc_types_order' => array('null_adjustment' => 'none', 'sort_algorithm' => 'none'),
29-
'no_superfluous_phpdoc_tags' => false,
3030
))
3131
->setFinder($finder)
3232
;

0 commit comments

Comments
 (0)