Total Complexity | 4 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class BeatMapVersionDifficultyParitySummary |
||
6 | { |
||
7 | private object $paritySummary; |
||
8 | |||
9 | /** |
||
10 | * Create a new BeatMapVersionDifficultyParitySummary object |
||
11 | * @param object $paritySummary |
||
12 | */ |
||
13 | public function __construct(object $paritySummary) |
||
14 | { |
||
15 | $this->paritySummary = $paritySummary; |
||
16 | } |
||
17 | |||
18 | /** |
||
19 | * Get map version difficulty parity summary errors |
||
20 | * @return int |
||
21 | */ |
||
22 | public function getErrors(): int |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * Get map version difficulty parity summary resets |
||
29 | * @return int |
||
30 | */ |
||
31 | public function getResets(): int |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * Get map version difficulty parity summary warns |
||
38 | * @return int |
||
39 | */ |
||
40 | public function getWarns(): int |
||
43 | } |
||
44 | } |