diff options
author | Bruce Wells <brucekwells@gmail.com> | 2022-12-26 19:03:39 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-26 19:03:39 +0300 |
commit | cbc2f4f7989bc45f212d6a2fa8d48988bb5cb250 (patch) | |
tree | 17fd4045fc566682a0a65358e397b1be87632729 /.php-cs-fixer.php | |
parent | 3a18c7d47fdb64fd93963386da89df1170da80ed (diff) |
Fixing PHPCSFixer settings
'closure_fn_spacing'=>'none'
Diffstat (limited to '.php-cs-fixer.php')
-rw-r--r-- | .php-cs-fixer.php | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ $config // PHP code must use the long `<?php` tags or short-echo `<?=` tags and not other tag variations. 'full_opening_tag' => 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. |