| Total Complexity | 3 | 
| Total Lines | 18 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 14 | class GenerateSitemapCommand extends Command | ||
| 15 | { | ||
| 16 | private $sitemapGenerator; | ||
| 17 | |||
| 18 | public function __construct(SitemapGenerator $sitemapGenerator) | ||
| 22 | } | ||
| 23 | |||
| 24 | protected function configure(): void | ||
| 25 |     { | ||
| 26 |         $this->setDescription('Generate the sitemapindex and all the sitemaps'); | ||
| 27 | } | ||
| 28 | |||
| 29 | protected function execute(InputInterface $input, OutputInterface $output): void | ||
| 32 | } | ||
| 33 | } | ||
| 34 |