You are here

public function Definition::getDecoratedService in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/Definition.php \Symfony\Component\DependencyInjection\Definition::getDecoratedService()

Gets the service that decorates this service.

Return value

null|array An array composed of the decorated service id and the new id for it, null if no service is decorated

File

vendor/symfony/dependency-injection/Definition.php, line 167

Class

Definition
Definition represents a service definition.

Namespace

Symfony\Component\DependencyInjection

Code

public function getDecoratedService() {
  return $this->decoratedService;
}