/var/www/doncode.com.ua/www/lib/sendgrid/lib/mail
Edit: /var/www/doncode.com.ua/www/lib/sendgrid/lib/mail/Subject.php (1407B)
setSubject($subject);
}
}
/**
* Set the subject on a Subject object
*
* @param string $subject The email subject
*
* @throws TypeException
*/
public function setSubject($subject)
{
Assert::minLength($subject, 'subject', 1);
$this->subject = $subject;
}
/**
* Retrieve the subject from a Subject object
*
* @return string
*/
public function getSubject()
{
return mb_convert_encoding((string)$this->subject, 'UTF-8', 'UTF-8');
}
/**
* Return an array representing a Subject object for the Twilio SendGrid API
*
* @return string
*/
#[\ReturnTypeWillChange]
public function jsonSerialize()
{
return $this->getSubject();
}
}