You are here

public function MeetingResult::setMeetingId in Opigno Moxtra 8

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

Sets the meeting ID.

Parameters

int $id: The meeting id.

Return value

$this

Overrides MeetingResultInterface::setMeetingId

File

src/Entity/MeetingResult.php, line 71

Class

MeetingResult
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function setMeetingId($id) {
  $this
    ->set('meeting', $id);
  return $this;
}