ILIAS  release_8 Revision v8.24
class.ilAssQuestionHintRequestStatisticData.php
Go to the documentation of this file.
1<?php
2
28{
34 private $requestsPoints = null;
35
41 private $requestsCount = null;
42
46 public function __construct()
47 {
48 }
49
56 public function getRequestsPoints(): ?float
57 {
59 }
60
67 public function setRequestsPoints($requestsPoints): void
68 {
69 $this->requestsPoints = abs($requestsPoints);
70 }
71
78 public function getRequestsCount(): ?int
79 {
81 }
82
89 public function setRequestsCount($requestsCount): void
90 {
91 $this->requestsCount = $requestsCount;
92 }
93}
setRequestsPoints($requestsPoints)
Setter for requestsPoints.