Skip to content

Commit d9ccbbb

Browse files
bighappyfaceerayd
authored andcommitted
Merge pull request jsonrainbow#490 from localheinz/fix/sort
Fix: Keep rules sorted in .php_cs.dist
1 parent 41dcfaa commit d9ccbbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.php_cs.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ $config
1515
'array_syntax' => array('syntax' => 'long'),
1616
'binary_operator_spaces' => false,
1717
'concat_space' => array('spacing' => 'one'),
18+
'increment_style' => false,
1819
'no_useless_else' => true,
1920
'no_useless_return' => true,
2021
'ordered_imports' => true,
2122
'phpdoc_no_package' => false,
2223
'phpdoc_order' => true,
2324
'phpdoc_summary' => false,
2425
'pre_increment' => false,
25-
'trailing_comma_in_multiline_array' => false,
2626
'simplified_null_return' => false,
27+
'trailing_comma_in_multiline_array' => false,
2728
'yoda_style' => null,
28-
'increment_style' => false,
2929
))
3030
->setFinder($finder)
3131
;

0 commit comments

Comments
 (0)