From 6f06b45398735f293db7416310971222cd4b907b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 9 Mar 2018 08:17:31 +0100 Subject: [PATCH] Fix: Keep rules sorted --- .php_cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.php_cs b/.php_cs index ff43b3584..dd140b051 100644 --- a/.php_cs +++ b/.php_cs @@ -24,12 +24,12 @@ return PhpCsFixer\Config::create() ->setRiskyAllowed(true) ->setRules(array( '@PSR2' => true, + 'array_syntax' => array('syntax' => 'long'), 'binary_operator_spaces' => true, 'blank_line_before_return' => true, 'cast_spaces' => true, 'header_comment' => array('header' => $header), 'include' => true, - 'array_syntax' => array('syntax' => 'long'), 'method_separation' => true, 'no_blank_lines_after_class_opening' => true, 'no_blank_lines_after_phpdoc' => true, @@ -51,8 +51,8 @@ return PhpCsFixer\Config::create() 'phpdoc_trim' => true, 'phpdoc_types' => true, 'psr0' => true, - 'single_blank_line_before_namespace' => true, 'short_scalar_cast' => true, + 'single_blank_line_before_namespace' => true, 'standardize_not_equals' => true, 'ternary_operator_spaces' => true, 'trailing_comma_in_multiline_array' => true,