mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 11:44:14 +01:00
c0086b7e14
[e2e] Add e2e for tests removed node display applied rules with return null (#2320)
11 lines
328 B
PHP
11 lines
328 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix20220516;
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\DogFood\Rector\Closure\UpgradeRectorConfigRector;
|
|
return static function (\Rector\Config\RectorConfig $rectorConfig) : void {
|
|
$rectorConfig->rule(\Rector\DogFood\Rector\Closure\UpgradeRectorConfigRector::class);
|
|
};
|