rector/config/set/level/down-to-php74.php
Tomas Votruba 8a92b6daba Updated Rector to commit 49d6cc0dfa08a5d36fa63f0533482722257c3534
49d6cc0dfa [Php 8.1 Dep] Update stringy vendor patches to update with #[\ReturnTypeWillChange] (#1370)
2021-12-03 04:56:40 +00:00

13 lines
572 B
PHP

<?php
declare (strict_types=1);
namespace RectorPrefix20211203;
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);
};