Go\Aop\Framework\StaticClosureMethodInvocation::getStaticInvoker PHP Method

getStaticInvoker() protected static method

Returns static method invoker
protected static getStaticInvoker ( string $className, string $method ) : Closure
$className string Class name to forward request
$method string Method name to call
return Closure
    protected static function getStaticInvoker($className, $method)
    {
        return function (array $args) use($className, $method) {
            return forward_static_call_array([$className, $method], $args);
        };
    }
StaticClosureMethodInvocation