1 | <?php |
||
16 | class DefaultController |
||
17 | { |
||
18 | /** @var ServiceManager */ |
||
19 | private $serviceManager; |
||
20 | |||
21 | /** |
||
22 | * DefaultController constructor. |
||
23 | * @param ServiceManager $serviceManager Parsing the requested date |
||
24 | */ |
||
25 | public function __construct( |
||
30 | |||
31 | /** |
||
32 | * @return JsonResponse |
||
33 | */ |
||
34 | public function indexAction() |
||
40 | |||
41 | /** |
||
42 | * @return Response |
||
43 | */ |
||
44 | public function optionsAction() |
||
51 | |||
52 | /** |
||
53 | * @return JsonResponse |
||
54 | */ |
||
55 | public function serviceAction() |
||
61 | |||
62 | /** |
||
63 | * @return JsonResponse |
||
64 | */ |
||
65 | public function serviceSchemaAction() |
||
71 | } |
||
72 |