diff --git a/.php_cs.dist b/.php_cs.dist index 2bbfaa4a..c4e84b4e 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -15,6 +15,7 @@ $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, @@ -22,10 +23,9 @@ $config '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) ;