Completed
Push — master ( 5b8a36...a237b0 )
by Brandon
02:49
created
src/DownloadCommand.php 2 patches
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,6 +77,7 @@  discard block
 block discarded – undo
77 77
      * Clean-up the Zip file.
78 78
      *
79 79
      * @param the zip file to remove
80
+     * @param string $zipFile
80 81
      *
81 82
      * @return $this
82 83
      */
@@ -92,8 +93,8 @@  discard block
 block discarded – undo
92 93
     /**
93 94
      * Download the nukacode build files and display progress bar.
94 95
      *
95
-     * @param $buildUrl
96
-     * @param $zipFile
96
+     * @param string $buildUrl
97
+     * @param string $zipFile
97 98
      */
98 99
     protected function downloadFileWithProgressBar($buildUrl, $zipFile)
99 100
     {
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     protected function configure()
22 22
     {
23 23
         $this->setName('download')
24
-             ->setDescription('Download laravel builds.');
24
+                ->setDescription('Download laravel builds.');
25 25
     }
26 26
 
27 27
     /**
Please login to merge, or discard this patch.
src/NewCommand.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -247,7 +247,7 @@
 block discarded – undo
247 247
     /**
248 248
      * Download the nukacode build files and display progress bar.
249 249
      *
250
-     * @param $buildUrl
250
+     * @param string $buildUrl
251 251
      */
252 252
     protected function downloadFileWithProgressBar($buildUrl)
253 253
     {
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@
 block discarded – undo
33 33
     protected function configure()
34 34
     {
35 35
         $this->setName('new')
36
-             ->setDescription('Create a new Laravel application.')
37
-             ->addArgument('name', InputArgument::REQUIRED)
38
-             ->addOption('slim', null, InputOption::VALUE_NONE)
39
-             ->addOption('force', null, InputOption::VALUE_NONE)
40
-             ->addOption('laravelOnly', null, InputOption::VALUE_NONE)
41
-             ->addOption('lumen', null, InputOption::VALUE_NONE)
42
-             ->addOption('lumenOnly', null, InputOption::VALUE_NONE);
36
+                ->setDescription('Create a new Laravel application.')
37
+                ->addArgument('name', InputArgument::REQUIRED)
38
+                ->addOption('slim', null, InputOption::VALUE_NONE)
39
+                ->addOption('force', null, InputOption::VALUE_NONE)
40
+                ->addOption('laravelOnly', null, InputOption::VALUE_NONE)
41
+                ->addOption('lumen', null, InputOption::VALUE_NONE)
42
+                ->addOption('lumenOnly', null, InputOption::VALUE_NONE);
43 43
     }
44 44
 
45 45
     /**
Please login to merge, or discard this patch.