1 | <?php |
||
13 | class Event extends HttpApi |
||
14 | { |
||
15 | use Pagination; |
||
16 | |||
17 | /** |
||
18 | * @param string $domain |
||
19 | * @param array $params |
||
20 | * |
||
21 | * @return EventResponse |
||
22 | */ |
||
23 | public function get($domain, array $params = []) |
||
31 | |||
32 | /** |
||
33 | * @param EventResponse $eventResponse |
||
34 | * |
||
35 | * @return EventResponse|null |
||
36 | */ |
||
37 | public function getPaginationNext(EventResponse $eventResponse) |
||
41 | |||
42 | /** |
||
43 | * @param EventResponse $eventResponse |
||
44 | * |
||
45 | * @return EventResponse|null |
||
46 | */ |
||
47 | public function getPaginationPrevious(EventResponse $eventResponse) |
||
51 | /** |
||
52 | * @param EventResponse $eventResponse |
||
53 | * |
||
54 | * @return EventResponse|null |
||
55 | */ |
||
56 | public function getPaginationFirst(EventResponse $eventResponse) |
||
60 | /** |
||
61 | * @param EventResponse $eventResponse |
||
62 | * |
||
63 | * @return EventResponse|null |
||
64 | */ |
||
65 | public function getPaginationLast(EventResponse $eventResponse) |
||
69 | } |
||
70 |