Completed
Pull Request — master (#153)
by Dariusz
09:07
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.