You are here

public function ServiceReferenceGraph::getNode in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Compiler/ServiceReferenceGraph.php \Symfony\Component\DependencyInjection\Compiler\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

vendor/symfony/dependency-injection/Compiler/ServiceReferenceGraph.php, line 52

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];
}