@@ -48,8 +48,8 @@ discard block |
||
48 | 48 | } |
49 | 49 | |
50 | 50 | /** |
51 | - * @param $source |
|
52 | - * @param $target |
|
51 | + * @param string $source |
|
52 | + * @param string $target |
|
53 | 53 | * @param OutputInterface $output |
54 | 54 | */ |
55 | 55 | protected function copyConfigFiles($source, $target, OutputInterface $output) |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | |
133 | 133 | /** |
134 | 134 | * @param OutputInterface $output |
135 | - * @param $options |
|
135 | + * @param Options $options |
|
136 | 136 | */ |
137 | 137 | protected function setupProject(OutputInterface $output, $options) |
138 | 138 | { |
@@ -53,20 +53,20 @@ |
||
53 | 53 | public function getAllOptions() |
54 | 54 | { |
55 | 55 | return [ |
56 | - 'app' => $this->_app, |
|
57 | - 'server' => $this->_server, |
|
58 | - 'phpver' => $this->_phpVer, |
|
59 | - 'os' => $this->_os, |
|
60 | - 'box' => $this->_box, |
|
61 | - 'm2user' => $this->_m2Username, |
|
62 | - 'm2pass' => $this->_m2Password, |
|
63 | - 'repo_url' => $this->_repoUrl, |
|
64 | - 'ip_address' => $this->_ipAddress, |
|
65 | - 'cpus' => $this->_cpus, |
|
66 | - 'memory_limit' => $this->_memorylimit, |
|
67 | - 'locale' => $this->_locale, |
|
68 | - 'default_currency' => $this->_currency, |
|
69 | - 'base_url' => $this->_baseUrl, |
|
56 | + 'app' => $this->_app, |
|
57 | + 'server' => $this->_server, |
|
58 | + 'phpver' => $this->_phpVer, |
|
59 | + 'os' => $this->_os, |
|
60 | + 'box' => $this->_box, |
|
61 | + 'm2user' => $this->_m2Username, |
|
62 | + 'm2pass' => $this->_m2Password, |
|
63 | + 'repo_url' => $this->_repoUrl, |
|
64 | + 'ip_address' => $this->_ipAddress, |
|
65 | + 'cpus' => $this->_cpus, |
|
66 | + 'memory_limit' => $this->_memorylimit, |
|
67 | + 'locale' => $this->_locale, |
|
68 | + 'default_currency' => $this->_currency, |
|
69 | + 'base_url' => $this->_baseUrl, |
|
70 | 70 | ]; |
71 | 71 | } |
72 | 72 |