From ef741b8de95ad470a3fad116ac388659485b8b4f Mon Sep 17 00:00:00 2001 From: Phil Bates Date: Mon, 15 Apr 2024 06:35:50 +0100 Subject: [PATCH] php-cs-fixer: Disable single_line_empty_body This rule conflicts with phpcs which does the opposite of this rule meaning its impossible to ever get them both to pass. --- .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 53e0696..943d2e8 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -41,6 +41,7 @@ 'no_trailing_comma_in_singleline' => true, // 'numeric_literal_separator' => true, 'psr_autoloading' => true, + 'single_line_empty_body' => false, // Casing 'class_reference_name_casing' => true,