| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class ResponseMap extends Response |
||
| 8 | { |
||
| 9 | private ?BeatMap $beatMap = null; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Get beatmap object |
||
| 13 | * @return BeatMap|null |
||
| 14 | */ |
||
| 15 | public function getBeatMap(): ?BeatMap |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Set beatmap object |
||
| 22 | * @param BeatMap $beatMap |
||
| 23 | * @return ResponseMap |
||
| 24 | */ |
||
| 25 | public function setBeatMap(BeatMap $beatMap): ResponseMap |
||
| 29 | } |
||
| 30 | } |