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