Instant Upgrades and Automated Refactoring of any PHP 5.3+ code
Go to file
TomasVotruba a96c3cec60 funding: make github first-class 2020-06-19 13:19:46 +02:00
.docker/php Copy .git directory into docker image 2020-04-03 21:30:47 +02:00
.github funding: make github first-class 2020-06-19 13:19:46 +02:00
bin Define __RECTOR_RUNNING__ constant at analysis time 2020-05-08 14:12:25 +02:00
ci Add changed files caching 2020-04-20 01:54:17 +02:00
compiler un-prefix Symplify\SmartFileSystem, part of extensible code 2020-06-19 01:10:55 +02:00
config Expand CakePHP 4.1 standard 2020-06-17 21:53:00 -04:00
docs remove MoveAndRenameClassRector, confusing, preffer class rename 2020-06-18 22:51:17 +02:00
packages add ParsedStmtsAndTokens value object 2020-06-19 12:51:05 +02:00
rules prevente re-importing renamed use imports 2020-06-19 13:18:03 +02:00
src add ParsedStmtsAndTokens value object 2020-06-19 12:51:05 +02:00
stubs skip Form factories too 2020-06-18 16:56:16 +02:00
tests add BreakingREmovalGuard, CommentableNodeResolver, and @fixme to un-removable nodes in ini_get/ini_set 2020-06-18 12:07:26 +02:00
utils Add @mixin support from PHPStan 2020-05-16 12:54:59 +02:00
.dockerignore Copy .git directory into docker image 2020-04-03 21:30:47 +02:00
.editorconfig cleanup 2020-04-03 13:24:44 +02:00
.gitattributes do not export compiler as part of package 2020-05-04 19:21:06 +02:00
.gitignore fix importing of soon-to-be-existing classes 2020-06-19 12:11:45 +02:00
.kodiak.toml add merge section to kodiak 2020-04-29 23:42:29 +02:00
.phpstorm.meta.php add VIRTUAL_NODE constant, prevent double post traversing nodes 2020-06-19 01:35:11 +02:00
.travis.yml build just once 2020-02-27 14:28:50 +01:00
BACKERS.md [SOLID] Add ChangeIfElseValueAssignToEarlyReturnRector 2020-01-06 01:42:15 +01:00
CHANGELOG.md update CHANGELOG and rule overview 2020-06-05 12:33:30 +02:00
CODE_OF_CONDUCT.md Use HTTPS instead of HTTP 2018-02-14 07:23:09 -02:00
CONTRIBUTING.md Move contributing guide to its own file 2020-03-21 14:22:10 +01:00
Dockerfile Remove /dev/null from dockerfile for easier debugging 2020-04-20 10:34:51 +02:00
LICENSE Update LICENSE year forever 2018-01-02 20:27:07 -02:00
README.md README: add amateri 2020-06-18 12:43:11 +02:00
changelog-linker.yaml init CHANGELOG for 0.4.11 2019-04-13 15:16:49 +02:00
composer.json remove abz from classmap 2020-06-19 12:23:54 +02:00
ecs-after-rector.yaml use explicit null in yaml 2020-01-05 20:00:32 +01:00
ecs.yaml add support for single array item magic in tag value nodes 2020-06-06 13:41:16 +02:00
phpstan.neon add TokensByFilePathStorage 2020-06-18 21:10:41 +02:00
phpunit.xml locate test to compiler package 2020-05-20 12:25:33 +02:00
rector-ci.yaml Rector and PHPStan cleanup 2020-05-20 13:05:43 +02:00
rector.yaml prepare for multiple files 2020-06-19 00:07:58 +02:00
sonar-project.properties remove /refactoring dir 2020-06-18 23:07:55 +02:00

README.md

Rector - Upgrade Your Legacy App to a Modern Codebase

Rector is a reconstructor tool - it does instant upgrades and instant refactoring of your code. Why refactor manually if Rector can handle 80% of the task for you?

Coverage Status Downloads SonarCube



Rector-showcase


Sponsors

Rector grows faster with your help, the more you help the more work it saves you. Check out Rector's Patreon. One-time donations are welcome through PayPal.

Thank you:


Open-Source First

Rector instantly upgrades and instantly refactors the PHP code of your application.

It supports all versions of PHP from 5.2 and many open-source projects:



Drupal Rector rules


What Can Rector Do for You?

How to Apply Coding Standards?

Rector uses nikic/php-parser, that build on technology called abstract syntax tree) technology* (AST). AST doesn't care about spaces and produces mall-formatted code. That's why your project needs to have coding standard tool and set of rules, so it can make refactored nice and shiny again.

Don't have any coding standard tool? Add EasyCodingStandard and use prepared ecs-after-rector.yaml set.

Install

composer require rector/rector --dev
  • Having conflicts during composer require? → Use the Rector Prefixed
  • Using a different PHP version than Rector supports? → Use the Docker image

Running Rector

A. Prepared Sets

Featured open-source projects have prepared sets. You can find them in /config/set or by running:

vendor/bin/rector sets

Let's say you pick the symfony40 set and you want to upgrade your /src directory:

# show a list of known changes in Symfony 4.0
vendor/bin/rector process src --set symfony40 --dry-run

Rector will show you diff of files that it would change. To make the changes, run same command without --dry-run:

# apply upgrades to your code
vendor/bin/rector process src --set symfony40

Some sets, such as code-quality can be used on a regular basis. The best practise is to use config over CLI, here in sets parameter:

# rector.yaml
parameters:
    sets:
        - code-quality

B. Standalone Rules

In the end, it's best to combine few of basic sets and drop particular rules that you want to try:

# rector.yaml
parameters:
    sets:
        - code-quality

services:
    Rector\Php74\Rector\Property\TypedPropertyRector: null

Then let Rector refactor your code:

vendor/bin/rector process src

👍


Note: rector.yaml is loaded by default. For different location, use --config option.

Features

Paths

If you're annoyed by repeating paths in arguments, you can move them to config instead:

# rector.yaml
parameters:
    paths:
        - 'src'
        - 'tests'

Extra Autoloading

Rector relies on whatever autoload setup the project it is fixing is using by using the Composer autoloader as default. To specify your own autoload file, use --autoload-file option:

vendor/bin/rector process ../project --autoload-file ../project/vendor/autoload.php

Or use a rector.yaml configuration file:

# rector.yaml
parameters:
    autoload_paths:
        - 'vendor/squizlabs/php_codesniffer/autoload.php'
        - 'vendor/project-without-composer'

Exclude Paths and Rectors

You can also exclude files or directories (with regex or fnmatch):

# rector.yaml
parameters:
    exclude_paths:
        - '*/src/*/Tests/*'

You can use a whole set, except 1 rule:

# rector.yaml
parameters:
    exclude_rectors:
        - 'Rector\CodeQuality\Rector\If_\SimplifyIfReturnBoolRector'

For in-file exclusion, use @noRector \FQN name annotation:

class SomeClass
{
    /**
     * @noRector \Rector\DeadCode\Rector\ClassMethod\RemoveEmptyClassMethodRector
     */
    public function foo()
    {
        /** @noRector \Rector\DeadCode\Rector\Plus\RemoveDeadZeroAndOneOperationRector */
        round(1 + 0);
    }
}

Run Just 1 Rector Rule

Do you have config that includes many sets and Rectors? You might want to run only a single Rector. The --only argument allows that, e.g.:

vendor/bin/rector process src --set solid --only Rector\SOLID\Rector\Class_\FinalizeClassesWithoutChildrenRector

Or just short name:

vendor/bin/rector process src --set solid --only FinalizeClassesWithoutChildrenRector

Both will run only Rector\SOLID\Rector\Class_\FinalizeClassesWithoutChildrenRector.

Provide PHP Version

By default Rector uses the language features matching your system version of PHP. You can configure it for a different PHP version:

# rector.yaml
parameters:
    php_version_features: '7.2' # your version is 7.3

Safe Types

In defualts setting:

# rector.yaml
parameters:
    safe_types: false

All docblocks are taken seriously, e.g. with typed properties rule:

 <?php

 class ValueObject
 {
-    public $value;
+    public string $value;

    /**
     * @param string $value
     */
    public function __construct($value)
    {
        $this->value = $value;
    }
}

Do you want to use only explicit PHP type declaration? Enable safe_types:

# rector.yaml
parameters:
    safe_types: true

Then, docblocks are skipped:

 <?php

 class ValueObject
 {
     public $value;

-    public $count;
+    public int $count;

    /**
     * @param string $value
     */
    public function __construct($value, int $count)
    {
        $this->value = $value;
        $this->count = $count
    }
}

Import Use Statements

FQN classes are not imported by default. If you don't want to do it manually after every Rector run, enable it by:

# rector.yaml
parameters:
    auto_import_names: true

You can also fine-tune how these imports are processed:

# rector.yaml
parameters:
    # this will not import root namespace classes, like \DateTime or \Exception
    import_short_classes: false

    # this will not import classes used in PHP DocBlocks, like in /** @var \Some\Class */
    import_doc_blocks: false

Limit Execution to Changed Files

Execution can be limited to changed files using the process option --match-git-diff. This option will filter the files included by the configuration, creating an intersection with the files listed in git diff.

vendor/bin/rector process src --match-git-diff

This option is useful in CI with pull-requests that only change few files.

Symfony Container

To work with some Symfony rules, you now need to link your container XML file

# rector.yaml
parameters:
    # path to load services from
    symfony_container_xml_path: 'var/cache/dev/AppKernelDevDebugContainer.xml'

More Detailed Documentation


How to Contribute

See the contribution guide.


Run Rector in Docker

You can run Rector on your project using Docker:

docker run --rm -v $(pwd):/project rector/rector:latest process /project/src --set symfony40 --dry-run

# Note that a volume is mounted from `pwd` (the current directory) into `/project` which can be accessed later.

Using rector.yaml:

docker run --rm -v $(pwd):/project rector/rector:latest process /project/app \
--config /project/rector.yaml \
--autoload-file /project/vendor/autoload.php \
--dry-run

Community Packages

Do you use Rector to upgrade your code? Add it here: