mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-22 18:54:39 +01:00
15 lines
387 B
PHP
15 lines
387 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Comments\NodeTraverser;
|
|
|
|
use PhpParser\NodeTraverser;
|
|
use Rector\Comments\NodeVisitor\CommentRemovingNodeVisitor;
|
|
final class CommentRemovingNodeTraverser extends NodeTraverser
|
|
{
|
|
public function __construct(CommentRemovingNodeVisitor $commentRemovingNodeVisitor)
|
|
{
|
|
$this->addVisitor($commentRemovingNodeVisitor);
|
|
}
|
|
}
|