yii\mail\BaseMessage::__toString PHP Метод

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

PHP magic method that returns the string representation of this object.
public __toString ( ) : string
Результат 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 '';
        }
    }