class ServiceReferenceGraphEdge in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/dependency-injection/Compiler/ServiceReferenceGraphEdge.php \Symfony\Component\DependencyInjection\Compiler\ServiceReferenceGraphEdge
Represents an edge in your service graph.
Value is typically a reference.
@author Johannes M. Schmitt <schmittjoh@gmail.com>
Hierarchy
- class \Symfony\Component\DependencyInjection\Compiler\ServiceReferenceGraphEdge
Expanded class hierarchy of ServiceReferenceGraphEdge
File
- vendor/
symfony/ dependency-injection/ Compiler/ ServiceReferenceGraphEdge.php, line 21
Namespace
Symfony\Component\DependencyInjection\CompilerView source
class ServiceReferenceGraphEdge {
private $sourceNode;
private $destNode;
private $value;
/**
* Constructor.
*
* @param ServiceReferenceGraphNode $sourceNode
* @param ServiceReferenceGraphNode $destNode
* @param string $value
*/
public function __construct(ServiceReferenceGraphNode $sourceNode, ServiceReferenceGraphNode $destNode, $value = null) {
$this->sourceNode = $sourceNode;
$this->destNode = $destNode;
$this->value = $value;
}
/**
* Returns the value of the edge.
*
* @return ServiceReferenceGraphNode
*/
public function getValue() {
return $this->value;
}
/**
* Returns the source node.
*
* @return ServiceReferenceGraphNode
*/
public function getSourceNode() {
return $this->sourceNode;
}
/**
* Returns the destination node.
*
* @return ServiceReferenceGraphNode
*/
public function getDestNode() {
return $this->destNode;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ServiceReferenceGraphEdge:: |
private | property | ||
ServiceReferenceGraphEdge:: |
private | property | ||
ServiceReferenceGraphEdge:: |
private | property | ||
ServiceReferenceGraphEdge:: |
public | function | Returns the destination node. | |
ServiceReferenceGraphEdge:: |
public | function | Returns the source node. | |
ServiceReferenceGraphEdge:: |
public | function | Returns the value of the edge. | |
ServiceReferenceGraphEdge:: |
public | function | Constructor. |