public function ServiceReferenceGraphEdge::__construct

Constructor.

Parameters

ServiceReferenceGraphNode $sourceNode:

ServiceReferenceGraphNode $destNode:

string $value:

File

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

Class

ServiceReferenceGraphEdge
Represents an edge in your service graph.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function __construct(ServiceReferenceGraphNode $sourceNode, ServiceReferenceGraphNode $destNode, $value = null) {
  $this->sourceNode = $sourceNode;
  $this->destNode = $destNode;
  $this->value = $value;
}