Total Complexity | 3 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class ShellTaskDefinition implements TaskDefinitionInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var ParameterCollection |
||
13 | */ |
||
14 | private $parameter; |
||
15 | |||
16 | /** |
||
17 | * DirectoryTask constructor. |
||
18 | * @param string $executable |
||
19 | */ |
||
20 | public function __construct($executable) |
||
24 | ]); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @param string $arguments |
||
29 | * @return $this |
||
30 | */ |
||
31 | public function arguments($arguments): self |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @return ParameterCollection |
||
39 | */ |
||
40 | public function define(): ParameterCollectionInterface |
||
43 | } |
||
44 | } |