mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 21:38:22 +01:00
7e7a2f067a
476cfb00cb
disable fallback for now
15 lines
356 B
PHP
15 lines
356 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\Symfony\Set\SymfonySetList;
|
|
use Rector\ValueObject\PhpVersion;
|
|
|
|
return static function (RectorConfig $rectorConfig): void {
|
|
$rectorConfig->sets([SymfonySetList::SYMFONY_52]);
|
|
|
|
$rectorConfig->phpVersion(PhpVersion::PHP_80);
|
|
$rectorConfig->paths([__DIR__ . '/src']);
|
|
};
|