You are here

public function Workspace::setOwnerId in Opigno Moxtra 3.x

Same name and namespace in other branches
  1. 8 src/Entity/Workspace.php \Drupal\opigno_moxtra\Entity\Workspace::setOwnerId()

Sets the entity owner's user ID.

Parameters

int $uid: The owner user id.

Return value

$this

Overrides EntityOwnerInterface::setOwnerId

File

src/Entity/Workspace.php, line 92

Class

Workspace
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

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