Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class ShopwareCommandDefinition implements TaskDefinitionInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $command; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $arguments; |
||
21 | |||
22 | /** |
||
23 | * ShopwareCommandDefinition constructor. |
||
24 | * @param string $command |
||
25 | * @param string $arguments |
||
26 | */ |
||
27 | public function __construct(string $command, string $arguments = '') |
||
28 | { |
||
29 | $this->command = $command; |
||
30 | $this->arguments = $arguments; |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @return ParameterCollectionInterface |
||
35 | */ |
||
36 | public function define(): ParameterCollectionInterface |
||
39 | } |
||
40 | } |