mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 11:44:14 +01:00
5ec4cff203
[Php56] Handle jump not Expression stmt next initialized on AddDefaultValueForUndefinedVariableRector (#2725)
11 lines
327 B
PHP
11 lines
327 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix202208;
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\DependencyInjection\Rector\Class_\ActionInjectionToConstructorInjectionRector;
|
|
return static function (RectorConfig $rectorConfig) : void {
|
|
$rectorConfig->rule(ActionInjectionToConstructorInjectionRector::class);
|
|
};
|