You are here

public function ServiceReferenceGraphEdge::__construct in Zircon Profile 8.0

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

Constructor.

Parameters

ServiceReferenceGraphNode $sourceNode:

ServiceReferenceGraphNode $destNode:

string $value:

File

vendor/symfony/dependency-injection/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;
}