1 | <?php |
||
20 | class Event extends HttpApi |
||
21 | { |
||
22 | use Pagination; |
||
23 | |||
24 | /** |
||
25 | * @param string $domain |
||
26 | * @param array $params |
||
27 | * |
||
28 | * @return EventResponse |
||
29 | */ |
||
30 | public function get($domain, array $params = []) |
||
38 | |||
39 | /** |
||
40 | * @param EventResponse $eventResponse |
||
41 | * |
||
42 | * @return EventResponse|null |
||
43 | */ |
||
44 | public function getPaginationNext(EventResponse $eventResponse) |
||
48 | |||
49 | /** |
||
50 | * @param EventResponse $eventResponse |
||
51 | * |
||
52 | * @return EventResponse|null |
||
53 | */ |
||
54 | public function getPaginationPrevious(EventResponse $eventResponse) |
||
58 | |||
59 | /** |
||
60 | * @param EventResponse $eventResponse |
||
61 | * |
||
62 | * @return EventResponse|null |
||
63 | */ |
||
64 | public function getPaginationFirst(EventResponse $eventResponse) |
||
68 | |||
69 | /** |
||
70 | * @param EventResponse $eventResponse |
||
71 | * |
||
72 | * @return EventResponse|null |
||
73 | */ |
||
74 | public function getPaginationLast(EventResponse $eventResponse) |
||
78 | } |
||
79 |