yii\httpclient\Message::__toString PHP Method

__toString() public method

PHP magic method that returns the string representation of this object.
public __toString ( ) : string
return string the string representation of this object.
    public function __toString()
    {
        // __toString cannot throw exception
        // use trigger_error to bypass this limitation
        try {
            return $this->toString();
        } catch (\Exception $e) {
            ErrorHandler::convertExceptionToError($e);
            return '';
        }
    }