public function ServiceReferenceGraphNode::addOutEdge in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/Compiler/ServiceReferenceGraphNode.php \Symfony\Component\DependencyInjection\Compiler\ServiceReferenceGraphNode::addOutEdge()
Adds an out edge to this node.
Parameters
ServiceReferenceGraphEdge $edge:
File
- vendor/
symfony/ dependency-injection/ Compiler/ ServiceReferenceGraphNode.php, line 58
Class
- ServiceReferenceGraphNode
- Represents a node in your service graph.
Namespace
Symfony\Component\DependencyInjection\CompilerCode
public function addOutEdge(ServiceReferenceGraphEdge $edge) {
$this->outEdges[] = $edge;
}