public function SmsMessage::setUid in SMS Framework 8
Same name in this branch
- 8 src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::setUid()
- 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setUid()
Same name and namespace in other branches
- 2.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::setUid()
- 2.1.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::setUid()
Set the user who created the SMS message.
Parameters
int $uid: The ID of a user entity.
Return value
$this The called SMS message object.
Overrides SmsMessageInterface::setUid
1 call to SmsMessage::setUid()
- SmsMessage::__construct in src/
Message/ SmsMessage.php - Creates a new instance of an SMS message.
File
- src/
Message/ SmsMessage.php, line 299
Class
- SmsMessage
- Basic implementation of an SMS message.
Namespace
Drupal\sms\MessageCode
public function setUid($uid) {
$this->uid = $uid;
return $this;
}