Completed
Branch master (b5dddf)
by Richard
15:43
created
htdocs/kernel/imageset.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
      *
241 241
      * @param  int    $imgset_id
242 242
      * @param  string $tplset_name
243
-     * @return array
243
+     * @return boolean
244 244
      */
245 245
     public function linkThemeset($imgset_id, $tplset_name)
246 246
     {
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
      *
267 267
      * @param  int    $imgset_id
268 268
      * @param  string $tplset_name
269
-     * @return array
269
+     * @return boolean
270 270
      */
271 271
     public function unlinkThemeset($imgset_id, $tplset_name)
272 272
     {
Please login to merge, or discard this patch.
htdocs/kernel/member.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
     /**
57 57
      * constructor
58
-     * @param XoopsDatabase|null| $db
58
+     * @param XoopsDatabase $db
59 59
      */
60 60
     public function __construct(XoopsDatabase $db)
61 61
     {
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      *
232 232
      * @param  int $group_id ID of the group
233 233
      * @param  int $user_id  ID of the user
234
-     * @return XoopsMembership XoopsMembership
234
+     * @return boolean XoopsMembership
235 235
      */
236 236
     public function addUserToGroup($group_id, $user_id)
237 237
     {
Please login to merge, or discard this patch.
htdocs/kernel/module.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -430,7 +430,7 @@
 block discarded – undo
430 430
     }
431 431
 
432 432
     /**
433
-     * @param $dirname
433
+     * @param string $dirname
434 434
      *
435 435
      * @return mixed
436 436
      */
Please login to merge, or discard this patch.
htdocs/kernel/notification.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
     // Also, should we have get by module, get by category, etc...??
414 414
     /**
415 415
      * @param $module_id
416
-     * @param $category
417
-     * @param $item_id
416
+     * @param string $category
417
+     * @param integer $item_id
418 418
      * @param $event
419 419
      * @param $user_id
420 420
      *
@@ -477,7 +477,7 @@  discard block
 block discarded – undo
477 477
      * @param int    $user_id   ID of the user (default to current user)
478 478
      *                          *
479 479
      *
480
-     * @return bool
480
+     * @return false|null
481 481
      */
482 482
     public function subscribe($category, $item_id, $events, $mode = null, $module_id = null, $user_id = null)
483 483
     {
@@ -634,7 +634,7 @@  discard block
 block discarded – undo
634 634
      * @param  array $user_list
635 635
      * @param  int   $module_id
636 636
      * @param  int   $omit_user_id
637
-     * @return mixed
637
+     * @return false|null
638 638
      */
639 639
     public function triggerEvent($category, $item_id, $event, $extra_tags = array(), $user_list = array(), $module_id = null, $omit_user_id = null)
640 640
     {
Please login to merge, or discard this patch.
htdocs/kernel/object.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1355,7 +1355,7 @@
 block discarded – undo
1355 1355
      * Load a {@link XoopsObject} object from the database
1356 1356
      *
1357 1357
      * @access protected
1358
-     * @param  mixed $id     ID
1358
+     * @param  integer|null $id     ID
1359 1359
      * @param  array $fields fields to fetch
1360 1360
      * @return XoopsObject {@link XoopsObject}
1361 1361
      */
Please login to merge, or discard this patch.
htdocs/kernel/session.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -257,7 +257,7 @@
 block discarded – undo
257 257
      *
258 258
      * @param  string $sess_id session ID
259 259
      * @param  int    $expire  Time in seconds until a session expires
260
-     * @return bool
260
+     * @return boolean|null
261 261
      **/
262 262
     public function update_cookie($sess_id = null, $expire = null)
263 263
     {
Please login to merge, or discard this patch.
htdocs/kernel/tplset.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
      *
119 119
      * @see XoopsTplset
120 120
      * @param  bool $isNew is the new tplsets new??
121
-     * @return object XoopsTplset reference to the new tplsets
121
+     * @return XoopsTplset XoopsTplset reference to the new tplsets
122 122
      **/
123 123
     public function create($isNew = true)
124 124
     {
Please login to merge, or discard this patch.
htdocs/kernel/user.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -597,7 +597,7 @@
 block discarded – undo
597 597
 class XoopsUserHandler extends XoopsPersistableObjectHandler
598 598
 {
599 599
     /**
600
-     * @param XoopsDatabase|null| $db
600
+     * @param XoopsDatabase $db
601 601
      */
602 602
     public function __construct(XoopsDatabase $db)
603 603
     {
Please login to merge, or discard this patch.
htdocs/language/english/locale.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      * Number Formats
52 52
      *
53 53
      * @param  unknown_type $number
54
-     * @return unknown
54
+     * @return string
55 55
      */
56 56
     public function number_format($number)
57 57
     {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      *
64 64
      * @param  string $format
65 65
      * @param  string $number
66
-     * @return money  format
66
+     * @return string  format
67 67
      */
68 68
     public function money_format($format, $number)
69 69
     {
Please login to merge, or discard this patch.