Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 50% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class GenerateRewriteMaps |
||
13 | { |
||
14 | /** |
||
15 | * @var RewriteMapsSavingService |
||
16 | */ |
||
17 | private $rewriteMapsSavingService; |
||
18 | /** |
||
19 | * @var LoggerInterface |
||
20 | */ |
||
21 | private $logger; |
||
22 | /** |
||
23 | * @var ScopeConfigInterface |
||
24 | */ |
||
25 | private $scopeConfig; |
||
26 | |||
27 | 2 | public function __construct( |
|
35 | 2 | } |
|
36 | |||
37 | 2 | public function execute() |
|
50 |