Completed
Branch master (f83415)
by Michael
02:57 queued 18s
created
admin/adsligh_rsslib.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
 /**
26 26
  * @param $item
27
- * @param $type
27
+ * @param integer $type
28 28
  *
29 29
  * @return array
30 30
  */
Please login to merge, or discard this patch.
class/classifiedstree.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * @param $table_name
37
-     * @param $id_name
38
-     * @param $pid_name
37
+     * @param string $id_name
38
+     * @param string $pid_name
39 39
      */
40 40
     function ClassifiedsTree($table_name, $id_name, $pid_name)
41 41
     {
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
     }
193 193
 
194 194
     /**
195
-     * @param        $title
195
+     * @param        string $title
196 196
      * @param string $order
197 197
      * @param int    $preset_id
198 198
      * @param int    $none
Please login to merge, or discard this patch.
include/functions.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
 }
245 245
 
246 246
 /**
247
- * @param $permtype
247
+ * @param string $permtype
248 248
  *
249 249
  * @return mixed
250 250
  */
@@ -394,8 +394,8 @@  discard block
 block discarded – undo
394 394
 }
395 395
 
396 396
 /**
397
- * @param        $caption
398
- * @param        $name
397
+ * @param        string $caption
398
+ * @param        string $name
399 399
  * @param string $value
400 400
  * @param string $width
401 401
  * @param string $height
@@ -507,8 +507,8 @@  discard block
 block discarded – undo
507 507
 }
508 508
 
509 509
 /**
510
- * @param        $caption
511
- * @param        $name
510
+ * @param        string $caption
511
+ * @param        string $name
512 512
  * @param string $value
513 513
  * @param string $width
514 514
  * @param string $height
Please login to merge, or discard this patch.
include/gtickets.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
          * @param string $area
170 170
          * @param bool   $allow_repost
171 171
          *
172
-         * @return bool
172
+         * @return null|boolean
173 173
          */function check( $post = true , $area = '' , $allow_repost = true )
174 174
     {
175 175
         global $xoopsModule ;
@@ -292,10 +292,10 @@  discard block
 block discarded – undo
292 292
     }
293 293
 
294 294
         /**
295
-         * @param $key_name
295
+         * @param string $key_name
296 296
          * @param $tmp_array
297 297
          *
298
-         * @return array
298
+         * @return string[]
299 299
          */function extract_post_recursive( $key_name , $tmp_array )
300 300
     {
301 301
         $table = '' ;
Please login to merge, or discard this patch.
seo_url.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -103,9 +103,9 @@  discard block
 block discarded – undo
103 103
 }
104 104
 
105 105
 /**
106
- * @param $cid
106
+ * @param string $cid
107 107
  *
108
- * @return mixed|string
108
+ * @return string
109 109
  */
110 110
 function adslight_seo_cat($cid)
111 111
 {
@@ -126,9 +126,9 @@  discard block
 block discarded – undo
126 126
 }
127 127
 
128 128
 /**
129
- * @param $lid
129
+ * @param string $lid
130 130
  *
131
- * @return mixed|string
131
+ * @return string
132 132
  */
133 133
 function adslight_seo_titre($lid)
134 134
 {
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
  * @param string $title
153 153
  * @param bool   $withExt
154 154
  *
155
- * @return mixed|string
155
+ * @return string
156 156
  */
157 157
 function adslight_seo_title($title='', $withExt=false)
158 158
 {
Please login to merge, or discard this patch.
class/pictures.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     }
70 70
 
71 71
     /**
72
-     * @param $id
72
+     * @param integer $id
73 73
      */
74 74
     public function load($id)
75 75
     {
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      * create a new light_pictures
139 139
      *
140 140
      * @param  bool $isNew flag the new objects as "new"?
141
-     * @return object light_pictures
141
+     * @return jlm_pictures light_pictures
142 142
      */
143 143
     public function create($isNew = true)
144 144
     {
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
     /**
183 183
      * insert a new light_pictures in the database
184 184
      *
185
-     * @param XoopsObject $jlm_pictures
185
+     * @param jlm_pictures $jlm_pictures
186 186
      * @param bool        $force
187 187
      * @internal param object $light_pictures reference to the {@link light_pictures} object object
188 188
      * @return bool FALSE if failed, TRUE if already present and unchanged or successful
Please login to merge, or discard this patch.