public function MeetingResult::setScore in Opigno Moxtra 8
Same name and namespace in other branches
- 3.x src/Entity/MeetingResult.php \Drupal\opigno_moxtra\Entity\MeetingResult::setScore()
Sets the user score.
Parameters
int $value: The user score.
Return value
$this
Overrides MeetingResultInterface::setScore
File
- src/
Entity/ MeetingResult.php, line 140
Class
- MeetingResult
- Defines the Workspace entity.
Namespace
Drupal\opigno_moxtra\EntityCode
public function setScore($value) {
$this
->set('score', $value);
return $this;
}