Completed
Push — master ( eb0f84...204b42 )
by Michael
02:55
created
class/request.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -496,7 +496,7 @@
 block discarded – undo
496 496
      *
497 497
      * @access    protected
498 498
      *
499
-     * @param array $value Array of (nested arrays of) strings
499
+     * @param string $value Array of (nested arrays of) strings
500 500
      *
501 501
      * @return array|string The input array with stripshlashes applied to it
502 502
      */
Please login to merge, or discard this patch.
class/setting.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -189,6 +189,10 @@
 block discarded – undo
189 189
 
190 190
         return XoopsCache::delete($key);
191 191
     }
192
+
193
+    /**
194
+     * @param string $option
195
+     */
192 196
     public function getOptions($option = null, $V = "value")
193 197
     {
194 198
         $V = strtolower($V);
Please login to merge, or discard this patch.
class/userlog.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@  discard block
 block discarded – undo
35 35
     public $cookiePrefix = "";
36 36
     public $groupList;
37 37
     
38
+    /**
39
+     * @param boolean $debug
40
+     */
38 41
     protected function __construct($debug)
39 42
     {
40 43
         $this->debug = $debug;
@@ -108,6 +111,11 @@  discard block
 block discarded – undo
108 111
         return $this->groupList;
109 112
     }
110 113
     
114
+    /**
115
+     * @param string $name
116
+     *
117
+     * @return integer
118
+     */
111 119
     public function getConfig($name = null)
112 120
     {
113 121
         if ($this->config == null) {
@@ -139,6 +147,9 @@  discard block
 block discarded – undo
139 147
         return $this->config[$name];
140 148
     }
141 149
 
150
+    /**
151
+     * @param string $name
152
+     */
142 153
     public function &getHandler($name)
143 154
     {
144 155
         if (!isset($this->handler[$name . '_handler'])) {
Please login to merge, or discard this patch.