You are here

public function ServiceReferenceGraphNode::addInEdge in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/Compiler/ServiceReferenceGraphNode.php \Symfony\Component\DependencyInjection\Compiler\ServiceReferenceGraphNode::addInEdge()

Adds an in edge to this node.

Parameters

ServiceReferenceGraphEdge $edge:

File

vendor/symfony/dependency-injection/Compiler/ServiceReferenceGraphNode.php, line 48

Class

ServiceReferenceGraphNode
Represents a node in your service graph.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

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