rector/templates/custom-rule/utils/rector/src/Rector/__Name__.php
Tomas Votruba dd875cd0c9 Updated Rector to commit d09ae7400a75f7694a11c2d8353c2fd14b6419e3
d09ae7400a Add "custom-rule" command to make creating rules easy (#5498)
2024-01-25 00:06:40 +00:00

46 lines
1006 B
PHP

<?php
declare(strict_types=1);
namespace Utils\Rector\Rector;
use PhpParser\Node;
use Rector\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Utils\Rector\Tests\Rector\__Name__Test
*/
final class __Name__ extends AbstractRector
{
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition('// @todo fill the description', [
new CodeSample(
'// @todo fill code before',
'// @todo fill code after'
)
]);
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
// @todo select node type
return [\PhpParser\Node\Stmt\Class_::class];
}
/**
* @param \PhpParser\Node\Stmt\Class_ $node
*/
public function refactor(Node $node): ?Node
{
// @todo change the node
return $node;
}
}