ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
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  {
58  return $this->requestsPoints;
59  }
60 
67  public function setRequestsPoints($requestsPoints): void
68  {
69  $this->requestsPoints = abs($requestsPoints);
70  }
71 
78  public function getRequestsCount(): ?int
79  {
80  return $this->requestsCount;
81  }
82 
89  public function setRequestsCount($requestsCount): void
90  {
91  $this->requestsCount = $requestsCount;
92  }
93 }
setRequestsPoints($requestsPoints)
Setter for requestsPoints.
setRequestsCount($requestsCount)
Setter for requestsCount.