Completed
Push — master ( 8d6c5f...6f0c85 )
by Martijn van
02:23
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/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.
code/Commands/Make/MakeFormCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -86,6 +86,9 @@
 block discarded – undo
86 86
         return $filePath;
87 87
     }
88 88
 
89
+    /**
90
+     * @param string $formClass
91
+     */
89 92
     protected function getFormMethodStub($formClass)
90 93
     {
91 94
         $file = $this->getStubFilePath('ControllerFormMethods');
Please login to merge, or discard this patch.
code/Forms/ConsoleForm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
      * Add is $Field is required message.
94 94
      *
95 95
      * @param FormField $field
96
-     * @param $title
96
+     * @param string $title
97 97
      */
98 98
     protected function setCustomValidationMessage(FormField $field, $title)
99 99
     {
Please login to merge, or discard this patch.