From f4c12661b4224ca5041c9e15a1c486656631213e Mon Sep 17 00:00:00 2001 From: Meritoo Date: Sat, 16 Jun 2018 14:36:33 +0200 Subject: [PATCH] StyleCI configuration > fix bug "The provided fixer 'concat_with_spaces' cannot be enabled at the same time as 'concat_without_spaces'" --- .php_cs.dist | 2 +- .styleci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.php_cs.dist b/.php_cs.dist index fe6e788..3b03a36 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -14,7 +14,7 @@ return PhpCsFixer\Config::create() ], 'blank_line_before_return' => false, 'cast_spaces' => false, - // "concat_space" instead of "concat_with_spaces" option used by StyleCI + // "concat_space" instead of "concat_without_spaces" option used by StyleCI 'concat_space' => [ 'spacing' => 'one', ], diff --git a/.styleci.yml b/.styleci.yml index 01cf726..4d03130 100644 --- a/.styleci.yml +++ b/.styleci.yml @@ -1,13 +1,13 @@ preset: symfony enabled: - - concat_with_spaces - phpdoc_add_missing_param_annotation - phpdoc_order disabled: - blank_line_before_return - cast_spaces + - concat_without_spaces - phpdoc_align - phpdoc_separation - phpdoc_summary