| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function indexAction() |
||
| 40 | { |
||
| 41 | $changelog = $this->markConverter->convertToHtml(file_get_contents(__DIR__ . '/../../../../../ChangeLog-3.1.md')); |
||
| 42 | |||
| 43 | $response = new Response(); |
||
| 44 | $response->setContent( |
||
| 45 | $this->twig->render( |
||
| 46 | 'changelog/index.html.twig', |
||
| 47 | ['changelog' => $changelog] |
||
| 48 | ) |
||
| 49 | ); |
||
| 50 | |||
| 51 | return $response; |
||
| 52 | } |
||
| 53 | } |
||
| 54 |