芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/tblonline.org/app/Channels/SmsMessage.php
_recipient; } /** * @param string $recipient * @return $this */ public function setRecipient(string $recipient): SmsMessage { $this->_recipient = $recipient; return $this; } /** * @return string */ public function getContent(): string { return $this->_content; } /** * @param string $content * @return $this */ public function setContent(string $content): SmsMessage { $this->_content = $content; return $this; } }