Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function docFileAction() |
||
30 | { |
||
31 | $dir = sprintf( |
||
32 | '%s/../%s', |
||
33 | $this->get('kernel')->getRootDir(), |
||
34 | 'doc/' |
||
35 | ); |
||
36 | |||
37 | $docFile = json_decode(file_get_contents($dir . 'theatre.json'), true); |
||
38 | $docFile['host'] = $this->container->get('router')->getContext()->getHost(); |
||
39 | |||
40 | return new JsonResponse($docFile); |
||
41 | } |
||
42 | } |
||
43 |