Go\Aop\Framework\ReflectionConstructorInvocation::proceed PHP Method

proceed() final public method

Typically this method is called inside previous closure, as instance of Joinpoint is passed to callback Do not call this method directly, only inside callback closures.
final public proceed ( ) : mixed
return mixed
    public final function proceed()
    {
        if (isset($this->advices[$this->current])) {
            /** @var $currentInterceptor Interceptor */
            $currentInterceptor = $this->advices[$this->current];
            $this->current++;
            return $currentInterceptor->invoke($this);
        }
        if (!$this->constructorArguments) {
            $this->instance = $this->class->newInstance();
        } else {
            $this->instance = $this->class->newInstanceArgs($this->arguments);
        }
        return $this->instance;
    }