Completed
Push — master ( 8c3306...57acb7 )
by Martijn van
02:51
created
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/Commands/Make/MakeCommand.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -196,6 +196,7 @@  discard block
 block discarded – undo
196 196
     }
197 197
 
198 198
     /**
199
+     * @param string $commandClass
199 200
      * @return string
200 201
      */
201 202
     protected function getStubFilePath($commandClass)
@@ -244,7 +245,7 @@  discard block
 block discarded – undo
244 245
     }
245 246
 
246 247
     /**
247
-     * @param $class
248
+     * @param string $class
248 249
      * @return bool
249 250
      */
250 251
     protected function fileExists($class)
@@ -253,7 +254,7 @@  discard block
 block discarded – undo
253 254
     }
254 255
 
255 256
     /**
256
-     * @param $class
257
+     * @param string $class
257 258
      * @return bool
258 259
      */
259 260
     protected function classExists($class)
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
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
      * @param string $question
249 249
      * @param bool   $default
250 250
      *
251
-     * @return bool
251
+     * @return string
252 252
      */
253 253
     public function confirm($question, $default = false)
254 254
     {
@@ -340,7 +340,7 @@  discard block
 block discarded – undo
340 340
     /**
341 341
      * Format input to textual table.
342 342
      *
343
-     * @param array  $headers
343
+     * @param string[]  $headers
344 344
      * @param array  $rows
345 345
      * @param string $style
346 346
      *
Please login to merge, or discard this patch.