You are here

public function Replication::setOwnerId in Workspace 8

Sets the entity owner's user ID.

Parameters

int $uid: The owner user id.

Return value

$this

Overrides EntityOwnerInterface::setOwnerId

File

src/Entity/Replication.php, line 66

Class

Replication
Defines the Replication entity.

Namespace

Drupal\workspace\Entity

Code

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