for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Smoren\GraphTools\Traverse;
use Smoren\GraphTools\Conditions\Interfaces\FilterConditionInterface;
use Smoren\GraphTools\Models\Interfaces\VertexInterface;
use Smoren\GraphTools\Structs\Interfaces\TraverseStepIteratorInterface;
/**
* Class for direct traversing of the directional graph
* @author <[email protected]> Smoren
*/
class TraverseDirect extends Traverse
{
* @inheritDoc
protected function getNextVertexes(
VertexInterface $vertex,
FilterConditionInterface $condition
): TraverseStepIteratorInterface {
return $this->repository->getNextVertexes($vertex, $condition);
}