mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 11:44:14 +01:00
e6e5895517
[Naming] Skip used in arrow function args on RenameVariableToMatchMethodCallReturnTypeRector (#2599)
11 lines
280 B
PHP
11 lines
280 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix202207;
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\DogFood\Rector\Closure\UpgradeRectorConfigRector;
|
|
return static function (RectorConfig $rectorConfig) : void {
|
|
$rectorConfig->rule(UpgradeRectorConfigRector::class);
|
|
};
|