2021-10-19 09:00:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare (strict_types=1);
|
2022-05-27 10:39:50 +00:00
|
|
|
namespace RectorPrefix20220527;
|
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-05-27 11:51:31 +00:00
|
|
|
return static function (\Rector\Config\RectorConfig $rectorConfig) : void {
|
|
|
|
$rectorConfig->sets([\Rector\Set\ValueObject\DowngradeLevelSetList::DOWN_TO_PHP_72, \Rector\Set\ValueObject\DowngradeSetList::PHP_72]);
|
2021-10-19 09:00:23 +00:00
|
|
|
};
|