2021-11-17 11:36:37 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare (strict_types=1);
|
2021-12-29 23:18:00 +00:00
|
|
|
namespace RectorPrefix20211229;
|
2021-11-17 11:36:37 +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_53);
|
|
|
|
$containerConfigurator->import(\Rector\Set\ValueObject\DowngradeSetList::PHP_53);
|
|
|
|
};
|