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

__toString() final public method

Returns a friendly description of current joinpoint
final public __toString ( ) : string
return string
    public final function __toString()
    {
        return sprintf("%s(%s%s%s)", $this->accessType == self::READ ? 'get' : 'set', is_object($this->instance) ? get_class($this->instance) : $this->instance, $this->reflectionProperty->isStatic() ? '::' : '->', $this->reflectionProperty->name);
    }