You are here

public function MeetingResult::getUser in Opigno Moxtra 3.x

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

Returns the user entity.

Return value

\Drupal\user\UserInterface The user entity.

Overrides MeetingResultInterface::getUser

File

src/Entity/MeetingResult.php, line 79

Class

MeetingResult
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function getUser() {
  return $this
    ->get('user_id')->entity;
}