| 1 | <?php |
||
| 18 | class EventResponse implements ApiResponse |
||
| 19 | { |
||
| 20 | use PaginationResponse; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var Event[] |
||
| 24 | */ |
||
| 25 | private $items; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param Event[] $items |
||
| 29 | * @param array $paging |
||
| 30 | */ |
||
| 31 | public function __construct(array $items, array $paging) |
||
| 36 | |||
| 37 | public static function create(array $data) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @return Event[] |
||
| 51 | */ |
||
| 52 | public function getItems() |
||
| 56 | } |
||
| 57 |