mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 11:44:14 +01:00
11 lines
299 B
PHP
11 lines
299 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix20220601;
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\Set\ValueObject\DowngradeSetList;
|
|
return static function (\Rector\Config\RectorConfig $rectorConfig) : void {
|
|
$rectorConfig->sets([\Rector\Set\ValueObject\DowngradeSetList::PHP_82]);
|
|
};
|