Demo\Aspect\FunctionInterceptorAspect::aroundArrayFunctions PHP Method

aroundArrayFunctions() public method

This advice intercepts an access to the array_*** function in Demo\Example\ namespace
public aroundArrayFunctions ( Go\Aop\Intercept\FunctionInvocation $invocation ) : mixed
$invocation Go\Aop\Intercept\FunctionInvocation
return mixed
    public function aroundArrayFunctions(FunctionInvocation $invocation)
    {
        echo 'Calling Around Interceptor for ', $invocation, ' with arguments: ', json_encode($invocation->getArguments()), PHP_EOL;
        return $invocation->proceed();
    }