Search code examples
phpconfigurationcommand-line-interfacephp-cs-fixer

php cs fixer, how to run risky rules?


PHP-CS-FIXER

Hi I am using php-cs-fixer for first time. I know that we have to set a .php_cs.dist file

This is a example file that i got from the git repository of php-cs-fixer.

$finder = PhpCsFixer\Finder::create()
    ->exclude('somedir')
    ->in(__DIR__);

return PhpCsFixer\Config::create()
    ->setRules(array(
        '@Symfony' => true,
        'full_opening_tag' => false,
    ))
    ->setFinder($finder);

When i am running this command on CLI

php-cs-fixer fix --config=.php_cs.dist --allow-risky

It is saying that i need to give options to --allow-risky but in documentation it is nothing mention that how to set option for allow risky help me out guys.The sooner the better.

my question How to run risky rules? As there is nothing mentioned that how to use allow risky rule in php-cs-fixer.


Solution

  • The method is ->setRiskyAllowed(true). Implementation code.

    Your code should look something like this:

    $finder = PhpCsFixer\Finder::create()
        ->exclude('somedir')
        ->in(__DIR__);
    
    return PhpCsFixer\Config::create()
        ->setRiskyAllowed(true)
        ->setRules(array(
            '@Symfony' => true,
            'full_opening_tag' => false,
        ))
        ->setFinder($finder);
    

    I agree that this method is somewhat hidden, and I did not find it before I browsed the source code.