Completed
Push — master ( 8dfa1d...e5ceef )
by Martijn van
02:10
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/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.
code/Support/SuperSakeChecker.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     }
22 22
 
23 23
     /**
24
-     * @return bool|string
24
+     * @return string|false
25 25
      */
26 26
     protected function checkHtAccessProtection()
27 27
     {
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     }
36 36
 
37 37
     /**
38
-     * @return bool|string
38
+     * @return string|false
39 39
      */
40 40
     protected function checkWebConfigProtection()
41 41
     {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
     /**
74 74
      * Find the webserver software running on the PHP host.
75
-     * @return string|boolean Server software or boolean FALSE
75
+     * @return false|string Server software or boolean FALSE
76 76
      */
77 77
     public function findWebserver() {
78 78
         // Try finding from SERVER_SIGNATURE or SERVER_SOFTWARE
Please login to merge, or discard this patch.