1 | <?php |
||
11 | class SelfInit extends Command |
||
12 | { |
||
13 | |||
14 | private $distDirectory; |
||
15 | |||
16 | private $workingDirectory; |
||
17 | |||
18 | private $dirname = 'build'; |
||
19 | |||
20 | |||
21 | /** |
||
22 | * @return mixed |
||
23 | */ |
||
24 | 1 | public function getDistDirectory() |
|
25 | { |
||
26 | 1 | return $this->distDirectory; |
|
27 | } |
||
28 | |||
29 | |||
30 | /** |
||
31 | * @param mixed $distDirectory |
||
32 | */ |
||
33 | 2 | public function setDistDirectory($distDirectory) |
|
37 | |||
38 | |||
39 | /** |
||
40 | * @return mixed |
||
41 | */ |
||
42 | 1 | public function getWorkingDirectory() |
|
43 | { |
||
44 | 1 | return $this->workingDirectory; |
|
45 | } |
||
46 | |||
47 | |||
48 | /** |
||
49 | * @param mixed $workingDirectory |
||
50 | */ |
||
51 | 2 | public function setWorkingDirectory($workingDirectory) |
|
55 | |||
56 | |||
57 | /** |
||
58 | * @return string |
||
59 | */ |
||
60 | 1 | public function getDirname() |
|
64 | |||
65 | |||
66 | /** |
||
67 | * @param string $dirname |
||
68 | */ |
||
69 | 2 | public function setDirname($dirname) |
|
73 | |||
74 | |||
75 | 2 | public function execute() |
|
96 | |||
97 | } |