shockedplot7560 / fixer-custom-rules
Custom rules for 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
A set of custom fixers for PHP CS Fixer
Fixers
Shockedplot7560/no_space_before_braces_on_control
Open braces for control structures MUST NOT be preceded by a space.
<?php - if (true) { + if (true){ echo 'Hello world'; }