Go\Aop\Intercept\Joinpoint::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();

Usage Example

Esempio n. 1
0
 /**
  * After invoker
  *
  * @param Joinpoint $joinpoint the concrete joinpoint
  *
  * @return mixed the result of the call to {@link Joinpoint::proceed()}
  */
 public function invoke(Joinpoint $joinpoint)
 {
     try {
         $result = $joinpoint->proceed();
     } finally {
         $adviceMethod = $this->adviceMethod;
         $adviceMethod($joinpoint);
     }
     return $result;
 }
All Usage Examples Of Go\Aop\Intercept\Joinpoint::proceed