From ad81cb33939c3f6b453e929bae691948bba0319d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Tue, 3 Mar 2020 14:56:54 +0100 Subject: [PATCH] Enhancement: Enable no_whitespace_in_blank_line fixer --- .php_cs.dist | 1 + 1 file changed, 1 insertion(+) diff --git a/.php_cs.dist b/.php_cs.dist index 276ae62..09ad221 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -9,6 +9,7 @@ return PhpCsFixer\Config::create() 'array_syntax' => [ 'syntax' => 'short', ], + 'no_whitespace_in_blank_line' => true, 'php_unit_set_up_tear_down_visibility' => true, ]) ->setFinder($finder);