Add back vendor folders for development

This commit is contained in:
2022-06-08 14:28:56 +09:00
parent 6ee4358579
commit 2c592f0289
1339 changed files with 140266 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?php declare(strict_types=1);
namespace PhpParser;
interface NodeTraverserInterface
{
/**
* Adds a visitor.
*
* @param NodeVisitor $visitor Visitor to add
*/
public function addVisitor(NodeVisitor $visitor);
/**
* Removes an added visitor.
*
* @param NodeVisitor $visitor
*/
public function removeVisitor(NodeVisitor $visitor);
/**
* Traverses an array of nodes using the registered visitors.
*
* @param Node[] $nodes Array of nodes
*
* @return Node[] Traversed array of nodes
*/
public function traverse(array $nodes) : array;
}