ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
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}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(int $a_active_id, float $a_value, string $a_text, int $a_tstamp)