You are here

public function DefinitionDecorator::__construct in Zircon Profile 8

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

Constructor.

Parameters

string $parent The id of Definition instance to decorate.:

Overrides Definition::__construct

File

vendor/symfony/dependency-injection/DefinitionDecorator.php, line 32

Class

DefinitionDecorator
This definition decorates another definition.

Namespace

Symfony\Component\DependencyInjection

Code

public function __construct($parent) {
  parent::__construct();
  $this->parent = $parent;
}