rector/config/set/unwrap-compat.php

11 lines
317 B
PHP

<?php
declare (strict_types=1);
namespace RectorPrefix20220607;
use Rector\Config\RectorConfig;
use Rector\DeadCode\Rector\If_\UnwrapFutureCompatibleIfFunctionExistsRector;
return static function (RectorConfig $rectorConfig) : void {
$rectorConfig->rule(UnwrapFutureCompatibleIfFunctionExistsRector::class);
};