mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-25 12:14:02 +01:00
88a32076c6
[Php74] Skip readonly on RestoreDefaultNullToNullableTypePropertyRector (#1713)
13 lines
572 B
PHP
13 lines
572 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix20220122;
|
|
|
|
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_72);
|
|
$containerConfigurator->import(\Rector\Set\ValueObject\DowngradeSetList::PHP_72);
|
|
};
|