From 04c7dfe4f50c8cba3aec167b589e8de5dede4eda Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Mon, 18 Sep 2023 15:23:32 +0200 Subject: [PATCH] Disable `single_line_empty_body` This conflicts with phpcbf. --- .php-cs-fixer.dist.php | 1 + 1 file changed, 1 insertion(+) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index fd65257..60d7da8 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -7,6 +7,7 @@ return (new PhpCsFixer\Config()) ->setRiskyAllowed(true) ->setRules([ '@PER-CS2.0' => true, + 'single_line_empty_body' => false, 'array_push' => true, 'backtick_to_shell_exec' => true, -- 2.20.1