You are here

public function ILTResult::setILTId in Opigno Instructor-led Trainings 8

Same name and namespace in other branches
  1. 3.x src/Entity/ILTResult.php \Drupal\opigno_ilt\Entity\ILTResult::setILTId()

Sets the ILT ID.

Parameters

int $id: The ILT id.

Return value

$this

Overrides ILTResultInterface::setILTId

File

src/Entity/ILTResult.php, line 71

Class

ILTResult
Defines the ILT Result entity.

Namespace

Drupal\opigno_ilt\Entity

Code

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