| 1 | <?php |
||
| 13 | class HighscoresResponse extends AbstractResponse |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var Highscores |
||
| 17 | */ |
||
| 18 | private $highscores; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * HighscoresResponse constructor. |
||
| 22 | * @param \stdClass $response |
||
| 23 | * @throws NotFoundException |
||
| 24 | * @throws \Igorsgm\TibiaDataApi\Exceptions\ImmutableException |
||
| 25 | */ |
||
| 26 | public function __construct(\stdClass $response) |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return Highscores |
||
| 54 | */ |
||
| 55 | public function getHighscores(): Highscores |
||
| 59 | } |
||
| 60 |