From 2fd3eaff313ef52442e337a1b9f128334d62a455 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sun, 31 Dec 2017 13:17:17 +0100 Subject: [PATCH] Fix: Keep rules sorted in .php_cs.dist --- .php_cs.dist | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.php_cs.dist b/.php_cs.dist index 9486fb58..1eb45352 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) ;