mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-25 04:03:55 +01:00
e27e483094
[Core] BetterStandardPrinter performance improvement with unnecessary regex check on no Closure Uses and no ClassMethod ReturnType (#1653)
11 lines
423 B
PHP
11 lines
423 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix20220110;
|
|
|
|
use Rector\Set\ValueObject\DowngradeSetList;
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
return static function (\Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator $containerConfigurator) : void {
|
|
$containerConfigurator->import(\Rector\Set\ValueObject\DowngradeSetList::PHP_81);
|
|
};
|