shockedplot7560/fixer-custom-rules

Custom rules for php-cs-fixer

1.0.0 2023-06-06 19:14 UTC

This package is auto-updated.

Last update: 2025-01-06 22:57:01 UTC


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';
}