1 | <?php |
||
12 | class GuildsResponse extends AbstractResponse |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @var Guilds |
||
17 | */ |
||
18 | private $guilds; |
||
19 | |||
20 | /** |
||
21 | * GuildsResponse constructor. |
||
22 | * @param \stdClass $response |
||
23 | * @throws NotFoundException |
||
24 | * @throws \Igorsgm\TibiaDataApi\Exceptions\ImmutableException |
||
25 | */ |
||
26 | public function __construct(\stdClass $response) |
||
46 | |||
47 | /** |
||
48 | * @return Guilds |
||
49 | */ |
||
50 | public function getGuilds(): Guilds |
||
54 | } |
||
55 |