public function OgMembership::setOwnerId in Organic groups 8
Sets the entity owner's user ID.
Parameters
int $uid: The owner user id.
Return value
$this
Overrides EntityOwnerInterface::setOwnerId
File
- src/
Entity/ OgMembership.php, line 128
Class
- OgMembership
- The membership entity that connects a group and a user.
Namespace
Drupal\og\EntityCode
public function setOwnerId($uid) {
$this
->set('uid', $uid);
return $this;
}