2021-02-09 23:57:20 +01:00
|
|
|
<?php
|
|
|
|
|
2021-05-09 20:15:43 +00:00
|
|
|
declare (strict_types=1);
|
2022-05-31 07:17:00 +00:00
|
|
|
namespace RectorPrefix20220531;
|
2021-02-09 23:57:20 +01:00
|
|
|
|
2022-04-12 11:52:08 +00:00
|
|
|
use Rector\Config\RectorConfig;
|
2021-02-09 23:57:20 +01:00
|
|
|
use Rector\DependencyInjection\Rector\Class_\ActionInjectionToConstructorInjectionRector;
|
2022-05-27 11:51:31 +00:00
|
|
|
return static function (\Rector\Config\RectorConfig $rectorConfig) : void {
|
|
|
|
$rectorConfig->rule(\Rector\DependencyInjection\Rector\Class_\ActionInjectionToConstructorInjectionRector::class);
|
2021-02-09 23:57:20 +01:00
|
|
|
};
|