Neos\Flow\ObjectManagement\Proxy\ProxyClass::getConstructor PHP Method

getConstructor() public method

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