| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | public function indexAction() |
||
| 32 | { |
||
| 33 | $extractedDoc = $this->get('kreta_simple_api_doc.extractor.api_doc_extractor')->all(); |
||
| 34 | $htmlContent = $this->get('nelmio_api_doc.formatter.html_formatter')->format($extractedDoc); |
||
| 35 | |||
| 36 | return new Response($htmlContent, 200, ['Content-Type' => 'text/html']); |
||
| 37 | } |
||
| 38 | } |
||
| 39 |