rector/config/set/unwrap-compat.php
Tomas Votruba b03aa95fcc Updated Rector to commit 28dc9cebb2fd27102662a53fa063474643c6bbe5
28dc9cebb2 Prepare NamedToUnnamedArgs for PhpParameterReflection change in PHPStan 1.7 (#2305)
2022-05-13 09:29:14 +00:00

11 lines
360 B
PHP

<?php
declare (strict_types=1);
namespace RectorPrefix20220513;
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);
};