Go\Aop\Framework\AbstractMethodInvocation::__toString PHP Méthode

__toString() final public méthode

Returns friendly description of this joinpoint
final public __toString ( ) : string
Résultat 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);
    }