Skip to content

Commit

Permalink
Fixing PHPCSFixer settings
Browse files Browse the repository at this point in the history
'closure_fn_spacing'=>'none'
  • Loading branch information
phpfui authored Dec 26, 2022
1 parent 3a18c7d commit cbc2f4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
// 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.
Expand Down

0 comments on commit cbc2f4f

Please sign in to comment.