Go\Aop\Support\DeclareParentsAdvisor::__toString PHP Method

__toString() public method

Return string representation of object
public __toString ( ) : string
return string
    public function __toString()
    {
        $adviceClass = get_class($this->advice);
        $interfaceClasses = join(',', $this->advice->getInterfaces());
        return get_called_class() . ": advice [{$adviceClass}]; interfaces [{$interfaceClasses}] ";
    }