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

proceed() public method

Proceeds to the next interceptor in the chain.
public proceed ( ) : mixed
return mixed see the children interfaces' proceed definition.
    public function proceed()
    {
        if (isset($this->advices[$this->current])) {
            $currentInterceptor = $this->advices[$this->current++];
            $currentInterceptor->invoke($this);
        }
    }