Neos\Flow\ObjectManagement\ObjectManager::getLazyDependencyByHash PHP Метод

getLazyDependencyByHash() публичный Метод

Internally used by the injectProperties method of generated proxy classes.
public getLazyDependencyByHash ( string $hash, &$propertyReferenceVariable ) : mixed
$hash string
Результат mixed
    public function getLazyDependencyByHash($hash, &$propertyReferenceVariable)
    {
        if (!isset($this->dependencyProxies[$hash])) {
            return null;
        }
        $this->dependencyProxies[$hash]->_addPropertyVariable($propertyReferenceVariable);
        return $this->dependencyProxies[$hash];
    }