Checks for circular references.
ServiceReferenceGraphEdge[] $edges An array of Edges:
ServiceCircularReferenceException When a circular reference is found.
private function checkOutEdges(array $edges) {
foreach ($edges as $edge) {
$node = $edge
->getDestNode();
$id = $node
->getId();
$searchKey = array_search($id, $this->currentPath);
$this->currentPath[] = $id;
if (false !== $searchKey) {
throw new ServiceCircularReferenceException($id, array_slice($this->currentPath, $searchKey));
}
$this
->checkOutEdges($node
->getOutEdges());
array_pop($this->currentPath);
}
}