rector/config/set/unwrap-compat.php
Tomas Votruba 7e1e20e9f2 Updated Rector to commit 17b86d4b7728ceeb245226f2735b7b4abf6c58a8
17b86d4b77 [CodeQuality] Remove unnecessary check next return removed no SimplifyIfElseToTernaryRector (#2457)
2022-06-09 06:07:50 +00:00

11 lines
317 B
PHP

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