Go\Aop\Support\PointcutBuilder::after PHP Method

after() public method

Declares the "After" hook for specific pointcut expression
public after ( string $pointcutExpression, Closure $advice )
$pointcutExpression string Pointcut, e.g. "within(**)"
$advice Closure Advice to call
    public function after($pointcutExpression, Closure $advice)
    {
        $advice = new AfterInterceptor($advice, 0, $pointcutExpression);
        $this->registerAdviceInContainer($pointcutExpression, $advice);
    }