## 6 Steps to Add New Rector In case you need a transformation that you didn't find in Dynamic Rectors, you can create your own: 1. Just extend `Rector\Rector\AbstractRector` class. It will prepare **2 methods**: ```php public function isCandidate(Node $node): bool { } public function refactor(Node $node): ?Node { } ``` 2. Put it under `namespace Rector\Contrib\;` namespace ```php