Go\Aop\Framework\AbstractMethodInvocation::__toString PHP Method

__toString() final public method

Returns friendly description of this joinpoint
final public __toString ( ) : string
return string
    public final function __toString()
    {
        return sprintf("execution(%s%s%s())", is_object($this->instance) ? get_class($this->instance) : $this->instance, $this->reflectionMethod->isStatic() ? '::' : '->', $this->reflectionMethod->name);
    }