ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSurveyEvaluationResultsAnswer.php
Go to the documentation of this file.
1 <?php
2 
23 {
24  public int $active_id;
25  public float $value;
26  public string $text;
27  public int $tstamp;
28 
29  public function __construct(
30  int $a_active_id,
31  float $a_value,
32  string $a_text,
33  int $a_tstamp
34  ) {
35  $this->active_id = $a_active_id;
36  $this->value = $a_value;
37  $this->text = trim($a_text);
38  $this->tstamp = trim((string) $a_tstamp);
39  }
40 }
__construct(int $a_active_id, float $a_value, string $a_text, int $a_tstamp)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...