public function UserConsent::setOwnerId in Data Policy 8
Sets the entity owner's user ID.
Parameters
int $uid: The owner user id.
Return value
$this
Overrides EntityOwnerInterface::setOwnerId
File
- src/
Entity/ UserConsent.php, line 93
Class
- UserConsent
- Defines the User consent entity.
Namespace
Drupal\data_policy\EntityCode
public function setOwnerId($uid) {
$this
->set('user_id', $uid);
return $this;
}