public function HeartbeatStream::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
- src/
Entity/ HeartbeatStream.php, line 274
Class
- HeartbeatStream
- Defines the Heartbeat stream entity.
Namespace
Drupal\heartbeat\EntityCode
public function setOwnerId($uid) {
$this
->set('user_id', $uid);
return $this;
}