shockedplot7560 / fixer-custom-rules
php-cs-fixer 的自定义规则
1.0.0
2023-06-06 19:14 UTC
Requires
- php: ^8.0
- friendsofphp/php-cs-fixer: ^3.17
Requires (Dev)
- phpunit/phpunit: ^10.2
README
为 PHP CS Fixer 提供一组自定义修复器
修复器
Shockedplot7560/no_space_before_braces_on_control
控制结构的开放花括号之前不得有空格。
<?php - if (true) { + if (true){ echo 'Hello world'; }