1 | <?php |
||
15 | class OrganizerController extends RestController |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * List all registered organizers |
||
20 | * @Route("s/{limit}/{offset}", name="organizers_list") |
||
21 | * @Method("GET") |
||
22 | * @ApiDoc( |
||
23 | * section="Organizer", |
||
24 | * statusCodes={ |
||
25 | * 200="OK", |
||
26 | * } |
||
27 | * ) |
||
28 | * @param int $limit Limit results. Default is 50 |
||
29 | * @param int $offset Starting serial number of result collection. Default is 0 |
||
30 | */ |
||
31 | 1 | public function listAction($limit = null, $offset = null): Response |
|
37 | } |
||
38 |