You are here

public function MeetingResult::setUserId in Opigno Moxtra 8

Same name and namespace in other branches
  1. 3.x src/Entity/MeetingResult.php \Drupal\opigno_moxtra\Entity\MeetingResult::setUserId()

Sets the user ID.

Parameters

int $uid: The user id.

Return value

$this

Overrides MeetingResultInterface::setUserId

File

src/Entity/MeetingResult.php, line 101

Class

MeetingResult
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

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