Completed
Push — master ( 856ac2...6452b0 )
by Michael
09:45
created
class/xoopstree.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
     //sets the names of table, unique id, and parend id
43 43
     /**
44 44
      * @param $table_name
45
-     * @param $id_name
46
-     * @param $pid_name
45
+     * @param string $id_name
46
+     * @param string $pid_name
47 47
      */
48 48
     function MyXoopsTree($table_name, $id_name, $pid_name)
49 49
     {
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
     // returns an array of first child objects for a given id($sel_id)
58 58
     /**
59
-     * @param        $sel_id
59
+     * @param        integer $sel_id
60 60
      * @param string $order
61 61
      *
62 62
      * @return array
@@ -294,8 +294,8 @@  discard block
 block discarded – undo
294 294
     /**
295 295
      * Enter description here...
296 296
      *
297
-     * @param int|\unknown_type    $sel_id
298
-     * @param string|\unknown_type $order
297
+     * @param integer    $sel_id
298
+     * @param string $order
299 299
      * @param array|\unknown_type  $parray
300 300
      *
301 301
      * @return unknown
@@ -323,8 +323,8 @@  discard block
 block discarded – undo
323 323
     /**
324 324
      * Enter description here...
325 325
      *
326
-     * @param int|\unknown_type    $sel_id
327
-     * @param string|\unknown_type $order
326
+     * @param integer    $sel_id
327
+     * @param string $order
328 328
      * @param array|\unknown_type  $parray
329 329
      * @param string|\unknown_type $r_prefix
330 330
      *
Please login to merge, or discard this patch.
include/functions.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -196,6 +196,8 @@  discard block
 block discarded – undo
196 196
  * @package       News
197 197
  * @author        Hervé Thouzard (http://www.herve-thouzard.com)
198 198
  * @copyright (c) Hervé Thouzard
199
+ * @param string $caption
200
+ * @param string $name
199 201
  */
200 202
 function &news_getWysiwygForm($caption, $name, $value = '', $width = '100%', $height = '400px', $supplemental = '')
201 203
 {
@@ -379,6 +381,7 @@  discard block
 block discarded – undo
379 381
  * @package       News
380 382
  * @author        Hervé Thouzard (http://www.herve-thouzard.com)
381 383
  * @copyright (c) Hervé Thouzard
384
+ * @param string $content
382 385
  */
383 386
 function news_createmeta_keywords($content)
384 387
 {
@@ -514,6 +517,7 @@  discard block
 block discarded – undo
514 517
  * @package       News
515 518
  * @author        Hervé Thouzard (http://www.herve-thouzard.com)
516 519
  * @copyright (c) Hervé Thouzard
520
+ * @param string $fieldname
517 521
  */
518 522
 function news_FieldExists($fieldname, $table)
519 523
 {
@@ -529,6 +533,7 @@  discard block
 block discarded – undo
529 533
  * @package       News
530 534
  * @author        Hervé Thouzard (http://www.herve-thouzard.com)
531 535
  * @copyright (c) Hervé Thouzard
536
+ * @param string $field
532 537
  */
533 538
 function news_AddField($field, $table)
534 539
 {
@@ -616,6 +621,7 @@  discard block
 block discarded – undo
616 621
 /**
617 622
  * @author   Monte Ohrt <monte at ohrt dot com>, modified by Amos Robinson
618 623
  *           <amos dot robinson at gmail dot com>
624
+ * @param string $string
619 625
  */
620 626
 function news_close_tags($string)
621 627
 {
Please login to merge, or discard this patch.