1 | <?php |
||
10 | class PhpUnit extends Command |
||
11 | { |
||
12 | |||
13 | private $workingDir; |
||
14 | |||
15 | private $target; |
||
16 | |||
17 | private $options; |
||
18 | |||
19 | |||
20 | /** |
||
21 | * @return mixed |
||
22 | */ |
||
23 | 1 | public function getWorkingDir() |
|
24 | { |
||
25 | 1 | return $this->workingDir; |
|
26 | } |
||
27 | |||
28 | |||
29 | /** |
||
30 | * @param mixed $workingDir |
||
31 | */ |
||
32 | 1 | public function setWorkingDir($workingDir) |
|
36 | |||
37 | |||
38 | /** |
||
39 | * @return mixed |
||
40 | */ |
||
41 | 1 | public function getTarget() |
|
45 | |||
46 | |||
47 | /** |
||
48 | * @param mixed $target |
||
49 | */ |
||
50 | 1 | public function setTarget($target) |
|
54 | |||
55 | |||
56 | /** |
||
57 | * @return array|NULL |
||
58 | */ |
||
59 | 1 | public function getOptions() |
|
60 | { |
||
61 | 1 | return $this->options; |
|
62 | } |
||
63 | |||
64 | |||
65 | /** |
||
66 | * @param array|NULL $options |
||
67 | */ |
||
68 | 1 | public function setOptions(array $options = NULL) |
|
72 | |||
73 | |||
74 | 1 | public function execute() |
|
105 | |||
106 | } |