I've got pint running on v1.18, php-cs-fixer v3.56.0 so no issues there. Only thing is when adding the class_keyword rule to my list, it doesnt seem to be taking effect. Anyone got any ideas? I saw php-cs-fixer marks this rule as risky, is there anything additional I need to do to make this run? I can confirm that pint is running and using my config.
{
"exclude": "database/migrations",
"allowRisky": true,
"rules": {
"php_unit_method_casing": { "case": "camel_case" },
"single_line_empty_body": true,
"array_syntax": { "syntax": "short" },
"class_keyword": true
}
}