rector/packages/BetterPhpDocParser/Contract/BasePhpDocNodeVisitorInterface.php
Tomas Votruba 31566dc869
Traverse phpdoc with use of PhpDocNodeVisitor (#6045)
* make use of new simple-php-doc-parser

* add ParamPhpDocNodeVisitor

* remove uneeded contracts

* skip bool instanceof

* [ci-review] Rector Rectify

* [ci-review] Rector Rectify

Co-authored-by: kaizen-ci <info@kaizen-ci.org>
2021-04-06 19:33:09 +02:00

12 lines
230 B
PHP

<?php
declare(strict_types=1);
namespace Rector\BetterPhpDocParser\Contract;
use Symplify\SimplePhpDocParser\Contract\PhpDocNodeVisitorInterface;
interface BasePhpDocNodeVisitorInterface extends PhpDocNodeVisitorInterface
{
}