Completed
Pull Request — master (#2414)
by Ruud
13:24
created
src/Kunstmaan/GeneratorBundle/Command/GenerateConfigCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     private $overwriteLiipImagine;
18 18
 
19 19
     /**
20
-     * @param string $rootDir
20
+     * @param string $projectDir
21 21
      */
22 22
     public function __construct(string $projectDir)
23 23
     {
Please login to merge, or discard this patch.
src/Kunstmaan/GeneratorBundle/Command/InstallCommand.php 1 patch
Doc Comments   +8 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     private $shouldStop = false;
37 37
 
38 38
     /**
39
-     * @param string $rootDir
39
+     * @param string $projectDir
40 40
      */
41 41
     public function __construct(string $projectDir)
42 42
     {
@@ -63,6 +63,10 @@  discard block
 block discarded – undo
63 63
             );
64 64
     }
65 65
 
66
+    /**
67
+     * @param InputInterface $input
68
+     * @param OutputInterface $output
69
+     */
66 70
     private function initAssistant($input, $output)
67 71
     {
68 72
         if (is_null($this->assistant)) {
@@ -162,6 +166,9 @@  discard block
 block discarded – undo
162 166
         $this->assistant->writeSection('PRO TIP: If you like to use our frontend setup, run the buildUI.sh script or run the commands separate to compile the frontend assets. ', 'bg=blue;fg=white');
163 167
     }
164 168
 
169
+    /**
170
+     * @param string $command
171
+     */
165 172
     protected function executeCommand(OutputInterface $output, $command, array $options = [])
166 173
     {
167 174
         $options = array_merge(
Please login to merge, or discard this patch.