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