Symfony\Component\DependencyInjection\DefinitionDecorator::__construct PHP Method

__construct() public method

Constructor.
public __construct ( string $parent )
$parent string The id of Definition instance to decorate.
    public function __construct($parent)
    {
        parent::__construct();

        $this->parent = $parent;
        $this->changes = array();
    }