mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-22 02:36:52 +01:00
* 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>
12 lines
230 B
PHP
12 lines
230 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Rector\BetterPhpDocParser\Contract;
|
|
|
|
use Symplify\SimplePhpDocParser\Contract\PhpDocNodeVisitorInterface;
|
|
|
|
interface BasePhpDocNodeVisitorInterface extends PhpDocNodeVisitorInterface
|
|
{
|
|
}
|