for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PHPSemVerChecker\Visitor;
use PhpParser\NodeVisitorAbstract;
use PHPSemVerChecker\Registry\Registry;
class VisitorAbstract extends NodeVisitorAbstract
{
/**
* @var \PHPSemVerChecker\Registry\Registry
*/
protected $registry;
* @param \PHPSemVerChecker\Registry\Registry $registry
public function __construct(Registry $registry)
$this->registry = $registry;
}