From cbc2f4f7989bc45f212d6a2fa8d48988bb5cb250 Mon Sep 17 00:00:00 2001 From: Bruce Wells Date: Mon, 26 Dec 2022 11:03:39 -0500 Subject: [PATCH] Fixing PHPCSFixer settings 'closure_fn_spacing'=>'none' --- .php-cs-fixer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index 2ec098c..534bd1d 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -65,7 +65,7 @@ // PHP code must use the long ` true, // Spaces should be properly placed in a function declaration. - 'function_declaration' => ['closure_function_spacing'=>'none'], + 'function_declaration' => ['closure_function_spacing'=>'none', 'closure_fn_spacing'=>'none'], // Replace core functions calls returning constants with the constants. 'function_to_constant' => true, // Ensure single space between function's argument and its typehint.