Neos\Flow\ObjectManagement\DependencyInjection\DependencyProxy::_activateDependency PHP Method

_activateDependency() public method

Activate the dependency and set it in the object.
public _activateDependency ( ) : object
return object The real dependency object
    public function _activateDependency()
    {
        $realDependency = $this->builder->__invoke();
        foreach ($this->propertyVariables as &$propertyVariable) {
            $propertyVariable = $realDependency;
        }
        return $realDependency;
    }