Completed
Pull Request — master (#155)
by Manuel
14:29 queued 10:10
created
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/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/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.
src/Package/PHP/Package.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -306,6 +306,9 @@  discard block
 block discarded – undo
306 306
         return [trim($version_define), $version];
307 307
     }
308 308
 
309
+    /**
310
+     * @param string $path
311
+     */
309 312
     protected function extConfigIsIn($path)
310 313
     {
311 314
         if (defined('PHP_WINDOWS_VERSION_MAJOR') !== false) {
@@ -317,6 +320,9 @@  discard block
 block discarded – undo
317 320
         }
318 321
     }
319 322
 
323
+    /**
324
+     * @param string $path
325
+     */
320 326
     protected function locateSourceDirByExtConfig($path)
321 327
     {
322 328
         $it = new \RecursiveIteratorIterator(
Please login to merge, or discard this patch.
src/Package/PHP/Util/XML/Loader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     /**
53 53
      * @param string $path
54 54
      *
55
-     * @return Pickle\Base\Interfaces\Package
55
+     * @return \Composer\Package\PackageInterface
56 56
      */
57 57
     public function load($path)
58 58
     {
Please login to merge, or discard this patch.
src/Package/Util/Loader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -143,6 +143,9 @@
 block discarded – undo
143 143
         }
144 144
     }
145 145
 
146
+    /**
147
+     * @param string $key
148
+     */
146 149
     protected function isValid($config, $key, $type = 'any')
147 150
     {
148 151
         switch ($type) {
Please login to merge, or discard this patch.
src/Engine/HHVM/Ini.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,6 @@
 block discarded – undo
50 50
 
51 51
     /**
52 52
      * @param string $pickleSection
53
-     * @param array  $dsos
54 53
      *
55 54
      * @return string
56 55
      */
Please login to merge, or discard this patch.