public function MeetingResult::setUserId in Opigno Moxtra 8
Same name and namespace in other branches
- 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\EntityCode
public function setUserId($uid) {
$this
->set('user_id', $uid);
return $this;
}