Completed
Push — master ( fc2c42...d0941c )
by Richard
15s
created
htdocs/install/class/installwizard.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@
 block discarded – undo
197 197
     }
198 198
 
199 199
     /**
200
-     * @param $page
200
+     * @param string $page
201 201
      *
202 202
      * @return string
203 203
      */
Please login to merge, or discard this patch.
htdocs/modules/protector/class/ProtectorFilter.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -78,6 +78,10 @@
 block discarded – undo
78 78
     }
79 79
 
80 80
     // return: false : execute default action
81
+
82
+    /**
83
+     * @param string $type
84
+     */
81 85
     function execute($type)
82 86
     {
83 87
         $ret = 0;
Please login to merge, or discard this patch.
htdocs/modules/protector/class/ProtectorMysqlDatabase.class.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -54,6 +54,9 @@  discard block
 block discarded – undo
54 54
 }
55 55
 
56 56
 
57
+/**
58
+ * @param string $sql
59
+ */
57 60
 function injectionFound( $sql )
58 61
 {
59 62
     $protector = Protector::getInstance() ;
@@ -65,6 +68,9 @@  discard block
 block discarded – undo
65 68
 }
66 69
 
67 70
 
71
+/**
72
+ * @param string $sql
73
+ */
68 74
 function separateStringsInSQL( $sql )
69 75
 {
70 76
     $sql = trim( $sql ) ;
Please login to merge, or discard this patch.
htdocs/modules/publisher/class/file.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -251,7 +251,7 @@
 block discarded – undo
251 251
 class PublisherFileHandler extends XoopsPersistableObjectHandler
252 252
 {
253 253
     /**
254
-     * @param null|object $db
254
+     * @param Connection $db
255 255
      */
256 256
     public function __construct(Connection $db)
257 257
     {
Please login to merge, or discard this patch.
htdocs/modules/publisher/class/metagen.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -330,7 +330,7 @@
 block discarded – undo
330 330
     /**
331 331
      * @param string $document
332 332
      *
333
-     * @return mixed
333
+     * @return string
334 334
      */
335 335
     public function html2text($document)
336 336
     {
Please login to merge, or discard this patch.
htdocs/modules/publisher/class/plugin/search.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -35,6 +35,12 @@
 block discarded – undo
35 35
         return self::searchAdvanced($queryarray, $andor, $limit, $offset, $userid, $categories, $sortby, $searchin, $extra);
36 36
     }
37 37
 
38
+    /**
39
+     * @param string[] $queryarray
40
+     * @param string $andor
41
+     * @param integer $limit
42
+     * @param integer $offset
43
+     */
38 44
     public function searchAdvanced($queryarray, $andor, $limit, $offset, $userid, $categories = array(), $sortby = 0, $searchin = "", $extra = "")
39 45
     {
40 46
         $publisher = Publisher::getInstance();
Please login to merge, or discard this patch.
htdocs/modules/publisher/class/utils.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -346,7 +346,7 @@
 block discarded – undo
346 346
     /**
347 347
      * Check is current user is author of a given article
348 348
      *
349
-     * @param object $itemObj
349
+     * @param PublisherItem $itemObj
350 350
      *
351 351
      * @return bool
352 352
      */
Please login to merge, or discard this patch.
htdocs/modules/xcaptcha/class/form/captcha.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 class XcaptchaCaptchaForm extends Xoops\Form\ThemeForm
21 21
 {
22 22
     /**
23
-     * @param null $obj
24 23
      */
25 24
     public function __construct($object = null)
26 25
     {
Please login to merge, or discard this patch.
htdocs/modules/xcaptcha/class/form/image.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,6 @@
 block discarded – undo
20 20
 class XcaptchaImageForm extends Xoops\Form\ThemeForm
21 21
 {
22 22
     /**
23
-     * @param null $obj
24 23
      */
25 24
     public function __construct($object = null)
26 25
     {
Please login to merge, or discard this patch.