laravel / pint

Laravel Pint is an opinionated PHP code style fixer for minimalists.
https://laravel.com/docs/pint
MIT License
2.8k stars 143 forks source link

A specific php-cs-fixer rule (method_chaining_indentation) not working with pint #91

Closed introwit closed 2 years ago

introwit commented 2 years ago

Description:

Steps To Reproduce:

Screenshot 2022-07-25 at 3 27 41 PM
nunomaduro commented 2 years ago

Your JSON file is invalid. Try this:

{
    "rules": {
        "concat_space": {
            "spacing": "one"
        },
        "method_chaining_indentation": true
    }
}
introwit commented 2 years ago

That worked. Thank you :heart: