You are here

public function Vote::setOwnerId in Voting API 8.3

Sets the entity owner's user ID.

Parameters

int $uid: The owner user id.

Return value

$this

Overrides EntityOwnerInterface::setOwnerId

File

src/Entity/Vote.php, line 132

Class

Vote
Defines the Vote entity.

Namespace

Drupal\votingapi\Entity

Code

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