public function ServiceReferenceGraphNode::isAlias

Checks if the value of this node is an Alias.

Return value

Boolean True if the value is an Alias instance

File

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

Class

ServiceReferenceGraphNode
Represents a node in your service graph.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function isAlias() {
  return $this->value instanceof Alias;
}