You are here

public function ServiceReferenceGraph::connect in Service Container 7.2

Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Compiler/ServiceReferenceGraph.php \Symfony\Component\DependencyInjection\Compiler\ServiceReferenceGraph::connect()

Connects 2 nodes together in the Graph.

Parameters

string $sourceId:

string $sourceValue:

string $destId:

string $destValue:

string $reference:

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Compiler/ServiceReferenceGraph.php, line 88

Class

ServiceReferenceGraph
This is a directed graph of your services.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function connect($sourceId, $sourceValue, $destId, $destValue = null, $reference = null) {
  $sourceNode = $this
    ->createNode($sourceId, $sourceValue);
  $destNode = $this
    ->createNode($destId, $destValue);
  $edge = new ServiceReferenceGraphEdge($sourceNode, $destNode, $reference);
  $sourceNode
    ->addOutEdge($edge);
  $destNode
    ->addInEdge($edge);
}