Add rector to gitlab ci pipeline
1 open thread
Closes #3422825
Closes #3422825
1 | <?php | |
2 | ||
3 | declare(strict_types=1); | |
4 | ||
5 | use Rector\Config\RectorConfig; | |
6 | use Rector\Php71\Rector\FuncCall\RemoveExtraParametersRector; | |
7 | use Rector\ValueObject\PhpVersion; | |
8 | ||
9 | return RectorConfig::configure() | |
|