public function ServiceReferenceGraph::getNode

Gets a node by identifier.

Parameters

string $id The id to retrieve:

Return value

ServiceReferenceGraphNode The node matching the supplied identifier

Throws

InvalidArgumentException if no node matches the supplied identifier

File

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

Class

ServiceReferenceGraph
This is a directed graph of your services.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function getNode($id) {
  if (!isset($this->nodes[$id])) {
    throw new InvalidArgumentException(sprintf('There is no node with id "%s".', $id));
  }
  return $this->nodes[$id];
}