From 32db27af78a7ea0774a75a5e2386083a3eae0bf3 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Thu, 20 Jan 2022 19:23:33 +0000 Subject: [PATCH] php-cs-fixer: add logical_operators rule --- .php-cs-fixer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index 35102be7d..3fbdf33bb 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -43,6 +43,7 @@ return (new PhpCsFixer\Config) 'import_classes' => null, ], 'indentation_type' => true, + 'logical_operators' => true, 'native_function_invocation' => [ 'scope' => 'namespaced', 'include' => ['@all'],