Completed
Push — perm-issues-config ( 802ba3 )
by Julien
04:26
created
src/Base/Abstracts/Package/Build.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -68,6 +68,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/Package/Convey/Command/Git.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -71,6 +71,10 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Package/Convey/Command/Pickle.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -122,6 +122,10 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Package/Convey/Command/Tgz.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -65,6 +65,10 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Package/HHVM/Util/Cmake/Parser.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -47,6 +47,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Package/PHP/Command/Build/Windows.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -57,6 +57,7 @@
 block discarded – undo
57 57
 
58 58
     /**
59 59
      * @param string $src
60
+     * @param string $dest
60 61
      */
61 62
     private function copySrcDir($src, $dest)
62 63
     {
Please login to merge, or discard this patch.
src/Package/PHP/Command/Release.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -72,6 +72,9 @@
 block discarded – undo
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());
Please login to merge, or discard this patch.
src/Package/PHP/Command/Release/Windows/Binary.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -77,6 +77,9 @@
 block discarded – undo
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());
Please login to merge, or discard this patch.
src/Package/PHP/Convey/Command/Pecl.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -93,6 +93,10 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.