Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 4.5435 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
37 | 2 | public function execute() |
|
38 | { |
||
39 | 2 | if (!$this->scopeConfig->getValue('catalog/seo/rewrite_maps_generation_enabled')) { |
|
40 | 1 | return; |
|
41 | } |
||
42 | |||
43 | try { |
||
44 | 1 | $this->rewriteMapsSavingService->saveRewriteMapsForAllStores(); |
|
45 | } catch (InputException | FileSystemException $exception) { |
||
46 | $this->logger->error('There was an error while generating the rewrite maps', ['exception' => $exception]); |
||
47 | } |
||
50 |