mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-25 12:14:02 +01:00
13 lines
572 B
PHP
13 lines
572 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix20211229;
|
|
|
|
use Rector\Set\ValueObject\DowngradeLevelSetList;
|
|
use Rector\Set\ValueObject\DowngradeSetList;
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
return static function (\Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator $containerConfigurator) : void {
|
|
$containerConfigurator->import(\Rector\Set\ValueObject\DowngradeLevelSetList::DOWN_TO_PHP_80);
|
|
$containerConfigurator->import(\Rector\Set\ValueObject\DowngradeSetList::PHP_80);
|
|
};
|