rector/config/set/framework-extra-bundle-50.php
Tomas Votruba 24318b9a19 Updated Rector to commit 26cad67b1ccfc7051ed0d311e20619b71a995e09
26cad67b1c [CodingStyle] Clean up getParents() call on MakeInheritedMethodVisibilitySameAsParentRector (#2246)
2022-05-07 00:18:08 +00:00

11 lines
358 B
PHP

<?php
declare (strict_types=1);
namespace RectorPrefix20220507;
use Rector\Config\RectorConfig;
use Rector\Symfony\Rector\ClassMethod\TemplateAnnotationToThisRenderRector;
return static function (\Rector\Config\RectorConfig $rectorConfig) : void {
$rectorConfig->rule(\Rector\Symfony\Rector\ClassMethod\TemplateAnnotationToThisRenderRector::class);
};