for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kambo\Testing\ClassOpener\ClassManipulation\Node;
use PhpParser\NodeTraverser;
/**
* Node traverser
*
* @author Bohuslav Simek <[email protected]>
* @license MIT
*/
class Traverser extends NodeTraverser
{
* Remove all visitors from the traverser
* @return void
public function removeVisitors()
$this->visitors = [];
}