Completed
Branch master (b5dddf)
by Richard
15:43
created
htdocs/install/class/dbmanager.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
     }
201 201
 
202 202
     /**
203
-     * @param $sql
203
+     * @param string $sql
204 204
      *
205 205
      * @return mixed
206 206
      */
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
     }
213 213
 
214 214
     /**
215
-     * @param $table
215
+     * @param string $table
216 216
      *
217 217
      * @return mixed
218 218
      */
@@ -236,8 +236,8 @@  discard block
 block discarded – undo
236 236
     }
237 237
 
238 238
     /**
239
-     * @param $table
240
-     * @param $query
239
+     * @param string $table
240
+     * @param string $query
241 241
      *
242 242
      * @return bool
243 243
      */
Please login to merge, or discard this patch.
htdocs/install/class/installwizard.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     }
138 138
 
139 139
     /**
140
-     * @param $file
140
+     * @param string $file
141 141
      */
142 142
     public function loadLangFile($file)
143 143
     {
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
     }
163 163
 
164 164
     /**
165
-     * @param $page
165
+     * @param string $page
166 166
      *
167 167
      * @return bool|mixed
168 168
      */
Please login to merge, or discard this patch.
htdocs/install/class/pathcontroller.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -276,7 +276,7 @@
 block discarded – undo
276 276
      * @param bool   $create
277 277
      *
278 278
      * @internal param bool $recurse
279
-     * @return false on failure, method (u-ser,g-roup,w-orld) on success
279
+     * @return false|string on failure, method (u-ser,g-roup,w-orld) on success
280 280
      */
281 281
     public function makeWritable($path, $create = true)
282 282
     {
Please login to merge, or discard this patch.
htdocs/install/include/createconfigform.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -239,7 +239,7 @@
 block discarded – undo
239 239
 /**
240 240
  * @param $config
241 241
  *
242
- * @return array
242
+ * @return XoopsThemeForm[]
243 243
  */
244 244
 function createThemeform($config)
245 245
 {
Please login to merge, or discard this patch.
htdocs/install/include/functions.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -413,8 +413,8 @@  discard block
 block discarded – undo
413 413
 /**
414 414
  * *#@+
415 415
  * Xoops Write Licence System Key
416
- * @param        $system_key
417
- * @param        $licensefile
416
+ * @param        string $system_key
417
+ * @param        string $licensefile
418 418
  * @param string $license_file_dist
419 419
  * @return string
420 420
  */
@@ -490,8 +490,8 @@  discard block
 block discarded – undo
490 490
 /**
491 491
  * *#@+
492 492
  * Xoops Stripe Licence System Key
493
- * @param $xoops_key
494
- * @return mixed|string
493
+ * @param string $xoops_key
494
+ * @return string
495 495
  */
496 496
 function xoStripeKey($xoops_key)
497 497
 {
Please login to merge, or discard this patch.
htdocs/install/page_configsave.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
  * @param string   $sourceName template file name
110 110
  * @param string   $fileName   configuration file name
111 111
  *
112
- * @return true|string true on success, error message on failure
112
+ * @return string|boolean true on success, error message on failure
113 113
  */
114 114
 function writeConfigurationFile($vars, $path, $sourceName, $fileName)
115 115
 {
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
  *
153 153
  * @param string $filename file or directory name
154 154
  *
155
- * @return array|false false on error, or array of file stat information
155
+ * @return string false on error, or array of file stat information
156 156
  */
157 157
 function getStats($filename)
158 158
 {
Please login to merge, or discard this patch.
htdocs/kernel/blockinstance.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      *
58 58
      * @param  string $name
59 59
      * @param  array  $args
60
-     * @return null
60
+     * @return boolean
61 61
      */
62 62
     public function __set($name, $args)
63 63
     {
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      *
121 121
      * @param  string $name
122 122
      * @param  array  $args
123
-     * @return null
123
+     * @return boolean
124 124
      */
125 125
     public function __set($name, $args)
126 126
     {
Please login to merge, or discard this patch.
htdocs/kernel/comment.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -569,7 +569,7 @@
 block discarded – undo
569 569
      * @param int $item_id   Item ID
570 570
      * @param int $status    Status of the comment
571 571
      *
572
-     * @return array Array of {@link XoopsComment} objects
572
+     * @return integer Array of {@link XoopsComment} objects
573 573
      **/
574 574
     public function getCountByItemId($module_id, $item_id, $status = null)
575 575
     {
Please login to merge, or discard this patch.
htdocs/kernel/configitem.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -227,7 +227,7 @@
 block discarded – undo
227 227
     /**
228 228
      * Assign one or more {@link XoopsConfigItemOption}s
229 229
      *
230
-     * @param mixed $option either a {@link XoopsConfigItemOption} object or an array of them
230
+     * @param XoopsConfigOption $option either a {@link XoopsConfigItemOption} object or an array of them
231 231
      */
232 232
     public function setConfOptions($option)
233 233
     {
Please login to merge, or discard this patch.