rector/src/PostRector/Contract/Rector/PostRectorInterface.php
Tomas Votruba 7bb5d0c0c4 Updated Rector to commit 5b3d656a003e72540050d47e00285341a96b5796
5b3d656a00 [Custom] Add "detect-node" command to help with writing custom rules (#5576)
2024-02-07 16:28:52 +00:00

13 lines
181 B
PHP

<?php
declare (strict_types=1);
namespace Rector\PostRector\Contract\Rector;
use PhpParser\NodeVisitor;
/**
* @internal
*/
interface PostRectorInterface extends NodeVisitor
{
}