You are here

public function Workspace::setOwnerId in Multiversion 8

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 227

Class

Workspace
The workspace entity class.

Namespace

Drupal\multiversion\Entity

Code

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