2021-10-19 09:00:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare (strict_types=1);
|
2021-12-30 08:15:26 +00:00
|
|
|
namespace RectorPrefix20211230;
|
2021-10-19 09:00:23 +00:00
|
|
|
|
|
|
|
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);
|
2021-10-20 09:14:38 +00:00
|
|
|
$containerConfigurator->import(\Rector\Set\ValueObject\DowngradeSetList::PHP_80);
|
2021-10-19 09:00:23 +00:00
|
|
|
};
|