ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilAssQuestionHintRequestStatisticData.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
13 {
19  private $requestsPoints = null;
20 
26  private $requestsCount = null;
27 
31  public function __construct()
32  {
33  }
34 
41  public function getRequestsPoints()
42  {
43  return $this->requestsPoints;
44  }
45 
53  {
54  $this->requestsPoints = $requestsPoints;
55  }
56 
63  public function getRequestsCount()
64  {
65  return $this->requestsCount;
66  }
67 
75  {
76  $this->requestsCount = $requestsCount;
77  }
78 }
setRequestsPoints($requestsPoints)
Setter for requestsPonts.
setRequestsCount($requestsCount)
Setter for requestsCount.