Neos\Flow\ObjectManagement\Proxy\ProxyClass::getConstructor PHP Метод

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

Returns the ProxyConstructor for this ProxyClass. Creates it if needed.
public getConstructor ( ) : ProxyConstructor
Результат ProxyConstructor
    public function getConstructor()
    {
        if (!isset($this->constructor)) {
            $this->constructor = new ProxyConstructor($this->fullOriginalClassName);
            $this->constructor->injectReflectionService($this->reflectionService);
        }
        return $this->constructor;
    }