Completed
Push — 5.3 ( 7fdeaf...35e8bb )
by Jeroen
22s queued 13s
created
src/Kunstmaan/GeneratorBundle/Command/InstallCommand.php 1 patch
Doc Comments   +8 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     private $shouldStop = false;
38 38
 
39 39
     /**
40
-     * @param string $rootDir
40
+     * @param string $projectDir
41 41
      */
42 42
     public function __construct(string $projectDir)
43 43
     {
@@ -65,6 +65,10 @@  discard block
 block discarded – undo
65 65
             );
66 66
     }
67 67
 
68
+    /**
69
+     * @param InputInterface $input
70
+     * @param OutputInterface $output
71
+     */
68 72
     private function initAssistant($input, $output)
69 73
     {
70 74
         if (is_null($this->assistant)) {
@@ -170,6 +174,9 @@  discard block
 block discarded – undo
170 174
         $this->assistant->writeSection('PRO TIP: If you like to use the default frontend setup, run the buildUI.sh script or run the commands separate to compile the frontend assets. ', 'bg=blue;fg=white');
171 175
     }
172 176
 
177
+    /**
178
+     * @param string $command
179
+     */
173 180
     protected function executeCommand(OutputInterface $output, $command, array $options = [], $separateProcess = false)
174 181
     {
175 182
         $options = array_merge(['--no-debug' => true], $options);
Please login to merge, or discard this patch.