mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 03:35:01 +01:00
11 lines
360 B
PHP
11 lines
360 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix20220601;
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\DeadCode\Rector\If_\UnwrapFutureCompatibleIfFunctionExistsRector;
|
|
return static function (\Rector\Config\RectorConfig $rectorConfig) : void {
|
|
$rectorConfig->rule(\Rector\DeadCode\Rector\If_\UnwrapFutureCompatibleIfFunctionExistsRector::class);
|
|
};
|