From bb7055ebb73442fae4deb8ffd760f5da5fff6737 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 27 Nov 2017 15:12:48 +0100 Subject: [PATCH] Enhancement: Enable combine_consecutive_unsets fixer --- .php_cs.dist | 1 + 1 file changed, 1 insertion(+) diff --git a/.php_cs.dist b/.php_cs.dist index 1ece6c1e4..0e580bc4c 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -18,6 +18,7 @@ return PhpCsFixer\Config::create() 'blank_line_after_opening_tag' => true, 'blank_line_before_statement' => true, 'cast_spaces' => true, + 'combine_consecutive_unsets' => true, 'concat_space' => [ 'spacing' => 'one', ],