@@ -68,6 +68,9 @@ discard block |
||
68 | 68 | ]; |
69 | 69 | } |
70 | 70 | |
71 | + /** |
|
72 | + * @param string $hint |
|
73 | + */ |
|
71 | 74 | public function getLog($hint = null) |
72 | 75 | { |
73 | 76 | $ret = array(); |
@@ -99,6 +102,9 @@ discard block |
||
99 | 102 | } |
100 | 103 | } |
101 | 104 | |
105 | + /** |
|
106 | + * @return string |
|
107 | + */ |
|
102 | 108 | protected function getLogFilename($path, $log_item, $def_fl, array &$logs) |
103 | 109 | { |
104 | 110 | $is_hint = (isset($log_item['hint']) && !empty($log_item['hint'])); |
@@ -197,6 +203,9 @@ discard block |
||
197 | 203 | return (0 === $exitCode); |
198 | 204 | } |
199 | 205 | |
206 | + /** |
|
207 | + * @param string $configureOptions |
|
208 | + */ |
|
200 | 209 | protected function appendPkgConfigureOptions(&$configureOptions) |
201 | 210 | { |
202 | 211 | $opt = $this->pkg->getConfigureOptions(); |
@@ -71,6 +71,10 @@ |
||
71 | 71 | } |
72 | 72 | } |
73 | 73 | |
74 | + /** |
|
75 | + * @param string $target |
|
76 | + * @param boolean $no_convert |
|
77 | + */ |
|
74 | 78 | public function execute($target, $no_convert) |
75 | 79 | { |
76 | 80 | $this->fetch($target); |
@@ -122,6 +122,10 @@ |
||
122 | 122 | } |
123 | 123 | } |
124 | 124 | |
125 | + /** |
|
126 | + * @param string $target |
|
127 | + * @param boolean $no_convert |
|
128 | + */ |
|
125 | 129 | public function execute($target, $no_convert) |
126 | 130 | { |
127 | 131 | $this->fetch($target); |
@@ -65,6 +65,10 @@ |
||
65 | 65 | } |
66 | 66 | } |
67 | 67 | |
68 | + /** |
|
69 | + * @param string $target |
|
70 | + * @param boolean $no_convert |
|
71 | + */ |
|
68 | 72 | public function execute($target, $no_convert) |
69 | 73 | { |
70 | 74 | $this->fetch($target); |
@@ -47,6 +47,9 @@ discard block |
||
47 | 47 | $this->loader = $loader; |
48 | 48 | } |
49 | 49 | |
50 | + /** |
|
51 | + * @param string $path |
|
52 | + */ |
|
50 | 53 | public function load($path) |
51 | 54 | { |
52 | 55 | if (false === is_file($path)) { |
@@ -68,6 +71,9 @@ discard block |
||
68 | 71 | return $this->loader->load($package); |
69 | 72 | } |
70 | 73 | |
74 | + /** |
|
75 | + * @param string $cont |
|
76 | + */ |
|
71 | 77 | public function getExtName($cont) |
72 | 78 | { |
73 | 79 | $ret = null; |
@@ -57,6 +57,7 @@ |
||
57 | 57 | |
58 | 58 | /** |
59 | 59 | * @param string $src |
60 | + * @param string $dest |
|
60 | 61 | */ |
61 | 62 | private function copySrcDir($src, $dest) |
62 | 63 | { |
@@ -72,6 +72,9 @@ |
||
72 | 72 | $this->noConvert = $noConvert; |
73 | 73 | } |
74 | 74 | |
75 | + /** |
|
76 | + * @param string $path |
|
77 | + */ |
|
75 | 78 | protected function readPackage($path) |
76 | 79 | { |
77 | 80 | $jsonLoader = new Package\Util\JSON\Loader(new Package\Util\Loader()); |
@@ -77,6 +77,9 @@ |
||
77 | 77 | $this->noConvert = $noConvert; |
78 | 78 | } |
79 | 79 | |
80 | + /** |
|
81 | + * @param string $path |
|
82 | + */ |
|
80 | 83 | protected function readPackage($path) |
81 | 84 | { |
82 | 85 | $jsonLoader = new Package\Util\JSON\Loader(new Package\Util\Loader()); |
@@ -93,6 +93,10 @@ |
||
93 | 93 | unset($package, $downloader); |
94 | 94 | } |
95 | 95 | |
96 | + /** |
|
97 | + * @param string $target |
|
98 | + * @param boolean $no_convert |
|
99 | + */ |
|
96 | 100 | public function execute($target, $no_convert) |
97 | 101 | { |
98 | 102 | $this->fetch($target); |