2021-10-19 09:00:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare (strict_types=1);
|
2022-05-22 00:38:26 +00:00
|
|
|
namespace RectorPrefix20220522;
|
2021-10-19 09:00:23 +00:00
|
|
|
|
2022-04-12 11:52:08 +00:00
|
|
|
use Rector\Config\RectorConfig;
|
2021-10-19 09:00:23 +00:00
|
|
|
use Rector\Set\ValueObject\DowngradeLevelSetList;
|
|
|
|
use Rector\Set\ValueObject\DowngradeSetList;
|
2022-04-12 11:52:08 +00:00
|
|
|
return static function (\Rector\Config\RectorConfig $rectorConfig) : void {
|
2022-04-20 18:29:39 +00:00
|
|
|
$rectorConfig->sets([\Rector\Set\ValueObject\DowngradeLevelSetList::DOWN_TO_PHP_72, \Rector\Set\ValueObject\DowngradeSetList::PHP_72]);
|
2021-10-19 09:00:23 +00:00
|
|
|
};
|