You are here

public function MeetingResult::setMeeting in Opigno Moxtra 8

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

Sets the meeting entity.

Parameters

\Drupal\opigno_moxtra\MeetingInterface $meeting: The meeting entity.

Return value

$this

Overrides MeetingResultInterface::setMeeting

File

src/Entity/MeetingResult.php, line 56

Class

MeetingResult
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

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