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);
    }