We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d8778f commit 623c91cCopy full SHA for 623c91c
1 file changed
rector.php
@@ -5,13 +5,12 @@
5
use Rector\Core\Configuration\Option;
6
use Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector;
7
use Rector\Php74\Rector\Property\TypedPropertyRector;
8
-use Rector\Set\ValueObject\SetList;
+use Rector\Set\ValueObject\LevelSetList;
9
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
10
11
return static function (ContainerConfigurator $containerConfigurator): void
12
{
13
- $containerConfigurator->import(SetList::PHP_74);
14
- $containerConfigurator->import(SetList::PHP_80);
+ $containerConfigurator->import(LevelSetList::UP_TO_PHP_80);
15
16
$parameters = $containerConfigurator->parameters();
17
$parameters->set(Option::AUTO_IMPORT_NAMES, true);
0 commit comments