Go\Aop\Framework\ClassFieldAccess::proceed PHP 메소드

proceed() 최종 공개 메소드

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 ( ) : void
리턴 void For field interceptor there is no return values
    public final function proceed()
    {
        if (isset($this->advices[$this->current])) {
            /** @var $currentInterceptor Interceptor */
            $currentInterceptor = $this->advices[$this->current++];
            $currentInterceptor->invoke($this);
        }
    }