Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function indexAction() |
||
16 | { $converter = new CommonMarkConverter(); |
||
|
|||
17 | $changelog = $converter->convertToHtml(file_get_contents(__DIR__ . '/../../../../ChangeLog-3.1.md')); |
||
18 | |||
19 | return $this->render('AppBundle:ChangelogController:index.html.twig', ['changelog' => $changelog]); |
||
20 | } |
||
21 | } |
||
22 |