@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | /** |
36 | 36 | * @param Config $config |
37 | - * @return bool|string |
|
37 | + * @return string|false |
|
38 | 38 | */ |
39 | 39 | protected function getCommand(Config $config) |
40 | 40 | { |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | /** |
36 | 36 | * @param Config $config |
37 | - * @return bool|string |
|
37 | + * @return string|false |
|
38 | 38 | */ |
39 | 39 | protected function getCommand(Config $config) |
40 | 40 | { |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | /** |
36 | 36 | * @param Config $config |
37 | - * @return bool|string |
|
37 | + * @return string|false |
|
38 | 38 | */ |
39 | 39 | protected function getCommand(Config $config) |
40 | 40 | { |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | /** |
36 | 36 | * @param Config $config |
37 | - * @return bool|string |
|
37 | + * @return string|false |
|
38 | 38 | */ |
39 | 39 | protected function getCommand(Config $config) |
40 | 40 | { |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | /** |
36 | 36 | * @param Config $config |
37 | - * @return bool|string |
|
37 | + * @return string|false |
|
38 | 38 | */ |
39 | 39 | protected function getCommand(Config $config) |
40 | 40 | { |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | /** |
36 | 36 | * @param Config $config |
37 | - * @return bool|string |
|
37 | + * @return string|false |
|
38 | 38 | */ |
39 | 39 | protected function getCommand(Config $config) |
40 | 40 | { |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | /** |
36 | 36 | * @param Config $config |
37 | - * @return bool|string |
|
37 | + * @return string|false |
|
38 | 38 | */ |
39 | 39 | protected function getCommand(Config $config) |
40 | 40 | { |
@@ -9,8 +9,8 @@ |
||
9 | 9 | /** |
10 | 10 | * @param array $options |
11 | 11 | * @param array $config |
12 | - * @param $projectPath |
|
13 | - * @param $output |
|
12 | + * @param string $projectPath |
|
13 | + * @param \Symfony\Component\Console\Output\OutputInterface $output |
|
14 | 14 | * @return Magento2Project|MagentoProject |
15 | 15 | */ |
16 | 16 | public static function create(array $options, array $config, $projectPath, $output) |
@@ -57,20 +57,20 @@ |
||
57 | 57 | public function getAllOptions() |
58 | 58 | { |
59 | 59 | return [ |
60 | - 'app' => $this->_app, |
|
61 | - 'server' => $this->_server, |
|
62 | - 'phpver' => $this->_phpVer, |
|
63 | - 'os' => $this->_os, |
|
64 | - 'box' => $this->_box, |
|
65 | - 'm2user' => $this->_m2Username, |
|
66 | - 'm2pass' => $this->_m2Password, |
|
67 | - 'repo_url' => $this->_repoUrl, |
|
68 | - 'ip_address' => $this->_ipAddress, |
|
69 | - 'cpus' => $this->_cpus, |
|
70 | - 'memory_limit' => $this->_memorylimit, |
|
71 | - 'locale' => $this->_locale, |
|
72 | - 'default_currency' => $this->_currency, |
|
73 | - 'base_url' => $this->_baseUrl, |
|
60 | + 'app' => $this->_app, |
|
61 | + 'server' => $this->_server, |
|
62 | + 'phpver' => $this->_phpVer, |
|
63 | + 'os' => $this->_os, |
|
64 | + 'box' => $this->_box, |
|
65 | + 'm2user' => $this->_m2Username, |
|
66 | + 'm2pass' => $this->_m2Password, |
|
67 | + 'repo_url' => $this->_repoUrl, |
|
68 | + 'ip_address' => $this->_ipAddress, |
|
69 | + 'cpus' => $this->_cpus, |
|
70 | + 'memory_limit' => $this->_memorylimit, |
|
71 | + 'locale' => $this->_locale, |
|
72 | + 'default_currency' => $this->_currency, |
|
73 | + 'base_url' => $this->_baseUrl, |
|
74 | 74 | ]; |
75 | 75 | } |
76 | 76 |