mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 19:53:14 +01:00
2d3419bc94
[Arguments] Handle by pass 2nd argument default value on ArgumentAdderRector (#1946)
13 lines
572 B
PHP
13 lines
572 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix20220318;
|
|
|
|
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_74);
|
|
$containerConfigurator->import(\Rector\Set\ValueObject\DowngradeSetList::PHP_74);
|
|
};
|