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/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setUid()
- 2.1.x src/Entity/SmsMessage.php \Drupal\sms\Entity\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
File
- src/
Entity/ SmsMessage.php, line 290
Class
- SmsMessage
- Defines the SMS message entity.
Namespace
Drupal\sms\EntityCode
public function setUid($uid) {
$this
->setSenderEntity(User::load($uid));
return $this;
}