shockedplot7560/fixer-custom-rules

Custom rules for php-cs-fixer

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

pkg:composer/shockedplot7560/fixer-custom-rules

1.0.0 2023-06-06 19:14 UTC

This package is auto-updated.

Last update: 2025-10-07 00:32:42 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';
}