Completed
Pull Request — master (#155)
by Manuel
07:30
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/Console/Command/InstallerCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,6 @@
 block discarded – undo
42 42
 use Symfony\Component\Console\Output\OutputInterface;
43 43
 use Symfony\Component\Console\Question\ConfirmationQuestion;
44 44
 use Symfony\Component\Console\Question\ChoiceQuestion;
45
-use Symfony\Component\Console\Question\Question;
46 45
 use Symfony\Component\Console\Helper\Table;
47 46
 use Pickle\Base\Interfaces\Package;
48 47
 use Pickle\Base\Abstracts\Console\Command\BuildCommand;
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
@@ -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/Tgz.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/PHP/Command/Release/Windows/Binary.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -102,6 +102,9 @@
 block discarded – undo
102 102
         }
103 103
     }
104 104
 
105
+    /**
106
+     * @param string $path
107
+     */
105 108
     protected function readPackage($path)
106 109
     {
107 110
         $jsonLoader = new Package\Util\JSON\Loader(new Package\Util\Loader());
Please login to merge, or discard this patch.