rector/config/set/unwrap-compat.php
Tomas Votruba 7e7dc913ba Updated Rector to commit 02bb2edef38a70e9f4012850fe4fc395dd697d0b
02bb2edef3 [Scoper] Clean up scoper replace namespace stub (#2002)
2022-04-03 00:58:28 +00:00

12 lines
522 B
PHP

<?php
declare (strict_types=1);
namespace RectorPrefix20220403;
use Rector\DeadCode\Rector\If_\UnwrapFutureCompatibleIfFunctionExistsRector;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return static function (\Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator $containerConfigurator) : void {
$services = $containerConfigurator->services();
$services->set(\Rector\DeadCode\Rector\If_\UnwrapFutureCompatibleIfFunctionExistsRector::class);
};