Skip to content

Commit

Permalink
Merge pull request #490 from localheinz/fix/sort
Browse files Browse the repository at this point in the history
Fix: Keep rules sorted in .php_cs.dist
  • Loading branch information
bighappyface authored Dec 31, 2017
2 parents e2dc250 + 2fd3eaf commit 92ddcea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ $config
'array_syntax' => array('syntax' => 'long'),
'binary_operator_spaces' => false,
'concat_space' => array('spacing' => 'one'),
'increment_style' => false,
'no_useless_else' => true,
'no_useless_return' => true,
'ordered_imports' => true,
'phpdoc_no_package' => false,
'phpdoc_order' => true,
'phpdoc_summary' => false,
'pre_increment' => false,
'trailing_comma_in_multiline_array' => false,
'simplified_null_return' => false,
'trailing_comma_in_multiline_array' => false,
'yoda_style' => null,
'increment_style' => false,
))
->setFinder($finder)
;
Expand Down

0 comments on commit 92ddcea

Please sign in to comment.