Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | protected function execute(InputInterface $input, OutputInterface $output) |
||
34 | { |
||
35 | $root_path = \dirname(__DIR__) . '/../..'; |
||
36 | $raw_changelog = \file_get_contents($root_path . '/CHANGELOG.md'); |
||
37 | |||
38 | $markdown_renderer = Renderer::createFromMarkdown($raw_changelog); |
||
39 | |||
40 | $this->io->writeln((string)$markdown_renderer); |
||
41 | } |
||
44 |