| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 17 | { |
||
| 18 | $format = $this->getContainer()->getParameter('sludio_helper.sitemap.format'); |
||
| 19 | $type = $this->getContainer()->getParameter('sludio_helper.sitemap.type'); |
||
| 20 | $sitemap = $this->getContainer()->get("sludio_helper.sitemap.{$format}.{$type}"); |
||
| 21 | |||
| 22 | $output->writeln('Starting generation...'); |
||
| 23 | $sitemap->build(); |
||
| 24 | $output->writeln('Sitemap <info>generated!</info>'); |
||
| 25 | } |
||
| 26 | } |