nunomaduro / phpinsights

🔰 Instant PHP quality checks from your console
https://phpinsights.com
MIT License
5.32k stars 283 forks source link

How to add and config a PHP CS Fixer? #658

Open salarmehr opened 1 year ago

salarmehr commented 1 year ago

Could you provide an example of how to config this to use this PHP-CS-Fixer: concat_space => ['spacing' => 'one'] \PhpCsFixer\Fixer\Operator\ConcatSpaceFixer ?

ond-danny commented 2 months ago

This seems to work for us :

    'config' => [
        ConcatSpaceFixer::class => [
            'spacing' => 'one',
        ],
    ],