superdj/spaces-in-parentheses-php-cs-fixer

一个自定义的PHP CS Fixer,用于在括号中添加或删除空格

v1.1.0 2022-01-21 19:28 UTC

This package is auto-updated.

Last update: 2024-09-24 00:15:23 UTC


README

Packagist Downloads

安装

使用以下命令安装:

composer require --dev superdj/spaces-in-parentheses-php-cs-fixer

用法

.php-cs-fixer.php 文件中添加以下内容:

return ( new PhpCsFixer\Config )
    ->registerCustomFixers( [
        new \SuperDJ\SpacesInParenthesesFixer\SpacesInParenthesesFixer,
    ] )
    ->setRules( [
        'SuperDJ/spaces_in_parentheses'                    => [ 'space' => 'spaces' ],
    ]);