public function ServiceReferenceGraphNode::__construct

Constructor.

Parameters

string $id The node identifier:

mixed $value The node value:

File

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

Class

ServiceReferenceGraphNode
Represents a node in your service graph.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function __construct($id, $value) {
  $this->id = $id;
  $this->value = $value;
  $this->inEdges = array();
  $this->outEdges = array();
}