1 | <?php |
||
20 | class RepositoryReport { |
||
21 | |||
22 | /** |
||
23 | * Available |
||
24 | * |
||
25 | * @var int |
||
26 | */ |
||
27 | private $available; |
||
28 | |||
29 | /** |
||
30 | * Average. |
||
31 | * |
||
32 | * @var float |
||
33 | */ |
||
34 | private $average; |
||
35 | |||
36 | /** |
||
37 | * Count. |
||
38 | * |
||
39 | * @var int |
||
40 | */ |
||
41 | private $count; |
||
42 | |||
43 | /** |
||
44 | * Entity. |
||
45 | * |
||
46 | * @var string |
||
47 | */ |
||
48 | private $entity; |
||
49 | |||
50 | /** |
||
51 | * Field. |
||
52 | * |
||
53 | * @var string |
||
54 | */ |
||
55 | private $field; |
||
56 | |||
57 | /** |
||
58 | * Maximum. |
||
59 | * |
||
60 | * @var int |
||
61 | */ |
||
62 | private $maximum; |
||
63 | |||
64 | /** |
||
65 | * Minimum. |
||
66 | * |
||
67 | * @var int |
||
68 | */ |
||
69 | private $minimum; |
||
70 | |||
71 | /** |
||
72 | * Constructor. |
||
73 | */ |
||
74 | public function __construct() { |
||
77 | |||
78 | /** |
||
79 | * Get the available. |
||
80 | * |
||
81 | * @return int Returns the available. |
||
82 | */ |
||
83 | public function getAvailable() { |
||
86 | |||
87 | /** |
||
88 | * Get the average. |
||
89 | * |
||
90 | * @return float Returns the average. |
||
91 | */ |
||
92 | public function getAverage() { |
||
95 | |||
96 | /** |
||
97 | * Get the count. |
||
98 | * |
||
99 | * @return int Returns the count. |
||
100 | */ |
||
101 | public function getCount() { |
||
104 | |||
105 | /** |
||
106 | * Get the entity. |
||
107 | * |
||
108 | * @return string Returns the entity. |
||
109 | */ |
||
110 | public function getEntity() { |
||
113 | |||
114 | /** |
||
115 | * Get the field. |
||
116 | * |
||
117 | * @return string Returns the field. |
||
118 | */ |
||
119 | public function getField() { |
||
122 | |||
123 | /** |
||
124 | * Get the maximum. |
||
125 | * |
||
126 | * @return int Returns the maximum. |
||
127 | */ |
||
128 | public function getMaximum() { |
||
131 | |||
132 | /** |
||
133 | * Get the minimum. |
||
134 | * |
||
135 | * @return int Returns the minimum. |
||
136 | */ |
||
137 | public function getMinimum() { |
||
140 | |||
141 | /** |
||
142 | * Set the available. |
||
143 | * |
||
144 | * @param int $available The available. |
||
145 | * @return RepositoryReport Returns this repository report. |
||
146 | */ |
||
147 | public function setAvailable($available) { |
||
151 | |||
152 | /** |
||
153 | * Set the average. |
||
154 | * |
||
155 | * @param float $average The average. |
||
156 | * @return RepositoryReport Returns this repository report. |
||
157 | */ |
||
158 | public function setAverage($average) { |
||
162 | |||
163 | /** |
||
164 | * Set the count. |
||
165 | * |
||
166 | * @param int $count The count. |
||
167 | * @return RepositoryReport Returns this repository report. |
||
168 | */ |
||
169 | public function setCount($count) { |
||
173 | |||
174 | /** |
||
175 | * Set the entity. |
||
176 | * |
||
177 | * @param string $entity The entity. |
||
178 | * @return RepositoryReport Returns this repository report. |
||
179 | */ |
||
180 | public function setEntity($entity) { |
||
184 | |||
185 | /** |
||
186 | * Set the field. |
||
187 | * |
||
188 | * @param string $field The field. |
||
189 | * @return RepositoryReport Returns this repository report. |
||
190 | */ |
||
191 | public function setField($field) { |
||
195 | |||
196 | /** |
||
197 | * Set the maximum. |
||
198 | * |
||
199 | * @param int $maximum The maximum. |
||
200 | * @return RepositoryReport Returns this repository report. |
||
201 | */ |
||
202 | public function setMaximum($maximum) { |
||
206 | |||
207 | /** |
||
208 | * Set the minimum. |
||
209 | * |
||
210 | * @param int $minimum The minimum. |
||
211 | * @return RepositoryReport Returns this repository report. |
||
212 | */ |
||
213 | public function setMinimum($minimum) { |
||
217 | } |
||
218 |