public function Status::setOwnerId in Heartbeat 8
Sets the entity owner's user ID.
Parameters
int $uid: The owner user id.
Return value
$this
Overrides EntityOwnerInterface::setOwnerId
File
- modules/
statusmessage/ src/ Entity/ Status.php, line 128
Class
Namespace
Drupal\statusmessage\EntityCode
public function setOwnerId($uid) {
$this
->set('user_id', $uid);
return $this;
}