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