Completed
Push — master ( 469250...44517b )
by Michael
12s
created
htdocs/class/libraries/vendor/xoops/xmf/src/Xmf/Yaml.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
      * @param integer $inline Nesting level where you switch to inline YAML
45 45
      * @param integer $indent Number of spaces to indent for nested nodes
46 46
      *
47
-     * @return string|bool YAML string or false on error
47
+     * @return string|false YAML string or false on error
48 48
      */
49 49
     public static function dump($var, $inline = 4, $indent = 4)
50 50
     {
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
      * @param integer $inline Nesting level where you switch to inline YAML
129 129
      * @param integer $indent Number of spaces to indent for nested nodes
130 130
      *
131
-     * @return string|boolean YAML string or false on error
131
+     * @return string|false YAML string or false on error
132 132
      */
133 133
     public static function dumpWrapped($var, $inline = 4, $indent = 4)
134 134
     {
Please login to merge, or discard this patch.
htdocs/class/commentrenderer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -332,7 +332,7 @@
 block discarded – undo
332 332
      * @param array   $thread
333 333
      * @param int     $key
334 334
      * @param array   $replies
335
-     * @param string|int  $prefix
335
+     * @param integer  $prefix
336 336
      * @param bool    $admin_view
337 337
      * @param integer $depth
338 338
      * @access private
Please login to merge, or discard this patch.
htdocs/class/database/database.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@
 block discarded – undo
116 116
 class Database
117 117
 {
118 118
     /**
119
-     * @return object
119
+     * @return XoopsDatabase|null
120 120
      */
121 121
     public function getInstance()
122 122
     {
Please login to merge, or discard this patch.
htdocs/class/captcha/xoopscaptcha.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     /**
69 69
      * XoopsCaptcha::loadConfig()
70 70
      *
71
-     * @param mixed $filename
71
+     * @param string $filename
72 72
      *
73 73
      * @return array
74 74
      */
Please login to merge, or discard this patch.
htdocs/class/captcha/recaptcha/recaptchalib.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -211,6 +211,9 @@  discard block
 block discarded – undo
211 211
 
212 212
 /* Mailhide related code */
213 213
 
214
+/**
215
+ * @param string $ky
216
+ */
214 217
 function _recaptcha_aes_encrypt($val,$ky) {
215 218
 	if (! function_exists ("mcrypt_encrypt")) {
216 219
 		die ("To use reCAPTCHA Mailhide, you need to have the mcrypt php module installed.");
@@ -222,6 +225,9 @@  discard block
 block discarded – undo
222 225
 }
223 226
 
224 227
 
228
+/**
229
+ * @param null|string $x
230
+ */
225 231
 function _recaptcha_mailhide_urlbase64 ($x) {
226 232
 	return strtr(base64_encode ($x), '+/', '-_');
227 233
 }
Please login to merge, or discard this patch.
class/libraries/vendor/ircmaxell/random-lib/lib/RandomLib/AbstractMixer.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -133,6 +133,9 @@
 block discarded – undo
133 133
         return $parts;
134 134
     }
135 135
 
136
+    /**
137
+     * @param string $character
138
+     */
136 139
     private function str_pad($string, $size, $character)
137 140
     {
138 141
         $start = Util::safeStrlen($string);
Please login to merge, or discard this patch.
class/libraries/vendor/smottt/wideimage/lib/WideImage/vendor/de77/BMP.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -168,6 +168,9 @@  discard block
 block discarded – undo
168 168
 		return self::imagecreatefromstring(file_get_contents($filename));
169 169
 	}
170 170
 
171
+	/**
172
+	 * @param string $row
173
+	 */
171 174
 	private static function str_split2($row, $bps, $palette)
172 175
 	{
173 176
 		switch ($bps) {
@@ -210,6 +213,9 @@  discard block
 block discarded – undo
210 213
 		}
211 214
 	}
212 215
 
216
+	/**
217
+	 * @param integer $x
218
+	 */
213 219
 	private static function makepixel($img, $x, $y, $str, $bps)
214 220
 	{
215 221
 		switch ($bps) {
@@ -233,11 +239,17 @@  discard block
 block discarded – undo
233 239
 		}
234 240
 	}
235 241
 
242
+	/**
243
+	 * @param integer $n
244
+	 */
236 245
 	private static function byte3($n)
237 246
 	{
238 247
 		return chr($n & 255) . chr(($n >> 8) & 255) . chr(($n >> 16) & 255);
239 248
 	}
240 249
 
250
+	/**
251
+	 * @param string $n
252
+	 */
241 253
 	private static function undword($n)
242 254
 	{
243 255
 		$r = unpack("V", $n);
@@ -249,6 +261,9 @@  discard block
 block discarded – undo
249 261
 		return pack("V", $n);
250 262
 	}
251 263
 
264
+	/**
265
+	 * @param integer $n
266
+	 */
252 267
 	private static function word($n)
253 268
 	{
254 269
 		return pack("v", $n);
Please login to merge, or discard this patch.
class/libraries/vendor/smottt/wideimage/lib/WideImage/vendor/de77/TGA.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -39,6 +39,9 @@  discard block
 block discarded – undo
39 39
 
40 40
 class TGA
41 41
 {
42
+	/**
43
+	 * @param string $data
44
+	 */
42 45
 	public static function rle_decode($data, $datalen)
43 46
 	{
44 47
 		$len = strlen($data);
@@ -77,6 +80,9 @@  discard block
 block discarded – undo
77 80
 		return $out;
78 81
 	}
79 82
 
83
+	/**
84
+	 * @param integer $byte
85
+	 */
80 86
 	public static function dec_bits($byte, &$type, &$value)
81 87
 	{
82 88
 		$type  = ($byte & 0x80) >> 7;
Please login to merge, or discard this patch.
htdocs/class/file/folder.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -510,7 +510,7 @@  discard block
 block discarded – undo
510 510
      * Private method to list directories and files in each directory
511 511
      *
512 512
      * @param string $path
513
-     * @param        $hidden
513
+     * @param        boolean $hidden
514 514
      *
515 515
      * @internal param $ $ = boolean $hidden
516 516
      * @access   private
@@ -750,7 +750,7 @@  discard block
 block discarded – undo
750 750
      *
751 751
      * @param array|string $options (to, from, chmod, skip)
752 752
      *
753
-     * @return boolean Success
753
+     * @return string|false Success
754 754
      * @access public
755 755
      */
756 756
     public function move($options)
Please login to merge, or discard this patch.