You are here

public function ServiceReferenceGraphNode::isAlias in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Compiler/ServiceReferenceGraphNode.php \Symfony\Component\DependencyInjection\Compiler\ServiceReferenceGraphNode::isAlias()

Checks if the value of this node is an Alias.

Return value

bool True if the value is an Alias instance

File

vendor/symfony/dependency-injection/Compiler/ServiceReferenceGraphNode.php, line 68

Class

ServiceReferenceGraphNode
Represents a node in your service graph.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

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