public function ServiceReferenceGraphNode::addOutEdge

Adds an out edge to this node.

Parameters

ServiceReferenceGraphEdge $edge:

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/ServiceReferenceGraphNode.php, line 60

Class

ServiceReferenceGraphNode
Represents a node in your service graph.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function addOutEdge(ServiceReferenceGraphEdge $edge) {
  $this->outEdges[] = $edge;
}