Completed
Push — master ( d2e043...09ed12 )
by Changwan
12:25
created
src/Wandu/Http/Parameters/Session.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
     }
110 110
 
111 111
     /**
112
-     * @param mixed $name
112
+     * @param string $name
113 113
      */
114 114
     protected function validNameArgument($name)
115 115
     {
Please login to merge, or discard this patch.
src/Wandu/Installation/Commands/InstallCommand.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -49,6 +49,10 @@  discard block
 block discarded – undo
49 49
         $this->output->writeln("<info>Install Complete!</info>");
50 50
     }
51 51
 
52
+    /**
53
+     * @param string $appBasePath
54
+     * @param string $appNamespace
55
+     */
52 56
     protected function install($appBasePath, $appNamespace)
53 57
     {
54 58
         $installer = new SkeletonBuilder($appBasePath, __DIR__ . '/../skeleton');
@@ -83,6 +87,9 @@  discard block
 block discarded – undo
83 87
         (new Process("{$composer} dump-autoload", getcwd()))->run();
84 88
     }
85 89
 
90
+    /**
91
+     * @param string $appNamespace
92
+     */
86 93
     protected function saveAutoloadToComposer($appNamespace)
87 94
     {
88 95
         $this->output->write("save autoload setting to composer... ");
@@ -109,6 +116,10 @@  discard block
 block discarded – undo
109 116
         $this->output->writeln("<info>ok</info>");
110 117
     }
111 118
 
119
+    /**
120
+     * @param string $message
121
+     * @param string $default
122
+     */
112 123
     protected function askAppNamespace($message, $default)
113 124
     {
114 125
         return $this->io->ask($message, $default, function ($namespace) {
Please login to merge, or discard this patch.