mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-21 09:42:45 +01:00
14 lines
228 B
PHP
14 lines
228 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Testing\Contract;
|
|
|
|
use PhpParser\Node;
|
|
interface NodeTraversableInterface
|
|
{
|
|
/**
|
|
* @param Node[] $nodes
|
|
*/
|
|
public function traverseNodes(array $nodes) : void;
|
|
}
|