Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | public function dispatch(TaskDefinitionInterface $taskDefinition): DispatchResultInterface |
||
27 | { |
||
28 | $params = $taskDefinition->define(); |
||
29 | return $this->delegate(new ShopwareCommandDefinition( |
||
30 | 'system:config:set', |
||
31 | sprintf( |
||
32 | '-n %s %s %s', |
||
33 | escapeshellarg($params->get('key')), |
||
34 | escapeshellarg($params->get('value')), |
||
35 | $this->getEnvironmentConsoleParameter($taskDefinition) |
||
36 | ) |
||
39 | } |