You are here

public function SmsMessage::setUid in SMS Framework 2.x

Same name in this branch
  1. 2.x src/Message/SmsMessage.php \Drupal\sms\Message\SmsMessage::setUid()
  2. 2.x src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setUid()
Same name and namespace in other branches
  1. 8 src/Entity/SmsMessage.php \Drupal\sms\Entity\SmsMessage::setUid()
  2. 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 292

Class

SmsMessage
Defines the SMS message entity.

Namespace

Drupal\sms\Entity

Code

public function setUid($uid) {
  $this
    ->setSenderEntity(User::load($uid));
  return $this;
}