Go\Aop\Framework\AbstractMethodInvocation::__toString PHP Метод

__toString() закрытый публичный Метод

Returns friendly description of this joinpoint
final public __toString ( ) : string
Результат 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);
    }