rector/docs/rector_recipe.md
TomasVotruba 96c4272286 fix path
2020-08-16 00:54:02 +02:00

680 B

Generate a new Rector Rule

Creating a new Rector rule means many small steps. You need to create rule file, test file, test fixtures, put it into right category, bla bla bla...

How can we remove repeated work and let us focus only on refactor() method?

What generate Command is Does?

It creates a bare structured Rule. Don't worry, also generates a test case, which is required to contribute.

How to Generate Rector rule in 3 steps?

  1. Copy rector-recipe.php.dist to rector-recipe.php

  2. Change parameters in rector-recipe.php to meet you need

  3. Run command

    vendor/bin/rector generate
    

That's it :)