Braintree\Result\Error::__toString PHP Метод

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

create a printable representation of the object as: ClassName[property=value, property=value]
public __toString ( ) : string
Результат string
    public function __toString()
    {
        $output = Util::attributesToString($this->_attributes);
        if (isset($this->_creditCardVerification)) {
            $output .= sprintf('%s', $this->_creditCardVerification);
        }
        return __CLASS__ . '[' . $output . ']';
    }