public function ServiceReferenceGraphNode::addInEdge

Adds an in edge to this node.

Parameters

ServiceReferenceGraphEdge $edge:

File

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

Class

ServiceReferenceGraphNode
Represents a node in your service graph.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

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