You are here

public function MeetingResult::getScore in Opigno Moxtra 8

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

Returns the user score.

Return value

int|null The user score, or NULL in case the user score field has not been set on the entity.

Overrides MeetingResultInterface::getScore

File

src/Entity/MeetingResult.php, line 133

Class

MeetingResult
Defines the Workspace entity.

Namespace

Drupal\opigno_moxtra\Entity

Code

public function getScore() {
  return $this
    ->get('score')->value;
}