1 | <?php |
||
11 | class EventResponse implements ApiResponse |
||
12 | { |
||
13 | use PaginationResponse; |
||
14 | |||
15 | /** |
||
16 | * @var Event[] |
||
17 | */ |
||
18 | private $items; |
||
19 | |||
20 | /** |
||
21 | * @param Event[] $items |
||
22 | * @param array $paging |
||
23 | */ |
||
24 | public function __construct(array $items, array $paging) |
||
29 | |||
30 | public static function create(array $data) |
||
41 | |||
42 | /** |
||
43 | * @return Event[] |
||
44 | */ |
||
45 | public function getItems() |
||
49 | } |
||
50 |