Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | public function handle(): void |
||
24 | { |
||
25 | $locales = config('chief.locales'); |
||
26 | |||
27 | foreach ($locales as $locale) { |
||
28 | $filepath = public_path('image-sitemap-' . $locale . '.xml'); |
||
29 | |||
30 | $this->info('Generating an image sitemap for locale: ' . $locale . ' at: ' . $filepath); |
||
31 | |||
32 | $this->sitemapXmlFile->create($locale, $filepath); |
||
33 | } |
||
34 | |||
35 | $this->info('Done generating sitemaps.'); |
||
36 | } |
||
38 |