public function ServiceReferenceGraphEdge::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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\CompilerCode
public function __construct(ServiceReferenceGraphNode $sourceNode, ServiceReferenceGraphNode $destNode, $value = null) {
$this->sourceNode = $sourceNode;
$this->destNode = $destNode;
$this->value = $value;
}