Completed
Push — master ( 441321...88de30 )
by Martijn van
02:09
created
code/Commands/Make/MakeCommand.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -136,6 +136,7 @@
 block discarded – undo
136 136
     }
137 137
 
138 138
     /**
139
+     * @param string $commandClass
139 140
      * @return string
140 141
      */
141 142
     protected function getStubFilePath($commandClass)
Please login to merge, or discard this patch.
code/Commands/List/ListRouteCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
 
57 57
     /**
58 58
      * @param string $controller
59
-     * @return array
59
+     * @return string
60 60
      */
61 61
     protected function getUrlHandlersForController($controller)
62 62
     {
Please login to merge, or discard this patch.
code/Core/SilverstripeApplication.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -34,6 +34,10 @@
 block discarded – undo
34 34
         $this->setCatchExceptions(false);
35 35
     }
36 36
 
37
+    /**
38
+     * @param ArrayInput $input
39
+     * @param BufferedOutput $output
40
+     */
37 41
     public function run($input = null, $output = null)
38 42
     {
39 43
         return parent::run($input, $output);
Please login to merge, or discard this patch.
code/Core/SilverstripeCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
      *
234 234
      * @param  string  $question
235 235
      * @param  bool    $default
236
-     * @return bool
236
+     * @return string
237 237
      */
238 238
     public function confirm($question, $default = false)
239 239
     {
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
     /**
321 321
      * Format input to textual table.
322 322
      *
323
-     * @param  array   $headers
323
+     * @param  string[]   $headers
324 324
      * @param  array   $rows
325 325
      * @param  string  $style
326 326
      * @return void
Please login to merge, or discard this patch.