You are here

public function TeamMemberRole::setOwnerId in Apigee Edge 8

Sets the entity owner's user ID.

Parameters

int $uid: The owner user id.

Return value

$this

Overrides EntityOwnerInterface::setOwnerId

File

modules/apigee_edge_teams/src/Entity/TeamMemberRole.php, line 165

Class

TeamMemberRole
Defines the team member role entity.

Namespace

Drupal\apigee_edge_teams\Entity

Code

public function setOwnerId($uid) {
  return $this
    ->set('uid', $uid);
}