Completed
Branch master (5f51e9)
by Michael
05:28 queued 02:42
created
blocks/menu_block.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -218,7 +218,7 @@
 block discarded – undo
218 218
 
219 219
 /**
220 220
  * @param     $haystack
221
- * @param     $needle
221
+ * @param     string $needle
222 222
  * @param int $offset
223 223
  *
224 224
  * @return bool|int
Please login to merge, or discard this patch.
class/pedigree.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     var $debugArray = array();
35 35
 
36 36
     /**
37
-     * @param $debug
37
+     * @param boolean $debug
38 38
      */
39 39
     protected function __construct($debug)
40 40
     {
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
     }
112 112
 
113 113
     /**
114
-     * @param $name
114
+     * @param string $name
115 115
      *
116 116
      * @return mixed
117 117
      */
Please login to merge, or discard this patch.
coi.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -227,9 +227,9 @@  discard block
 block discarded – undo
227 227
 }
228 228
 
229 229
 /**
230
- * @param $ind
231
- * @param $gen
232
- * @param $class
230
+ * @param integer $ind
231
+ * @param integer $gen
232
+ * @param string $class
233 233
  *
234 234
  * @return int
235 235
  */
@@ -578,7 +578,7 @@  discard block
 block discarded – undo
578 578
  * @param $p
579 579
  * @param $m
580 580
  * @param $a
581
- * @param $pdist
581
+ * @param integer $pdist
582 582
  *
583 583
  * @return int
584 584
  */
Please login to merge, or discard this patch.
include/class_eq_pie.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     /**
19 19
      * @param $number
20 20
      *
21
-     * @return mixed
21
+     * @return string
22 22
      */
23 23
     function GetColor($number)
24 24
     {
Please login to merge, or discard this patch.
include/class_field.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 class Systemmessage
7 7
 {
8 8
     /**
9
-     * @param $message
9
+     * @param string $message
10 10
      */
11 11
     function Systemmessage($message)
12 12
     {
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
     }
236 236
 
237 237
     /**
238
-     * @param $setting
238
+     * @param string $setting
239 239
      *
240 240
      * @return mixed
241 241
      */
Please login to merge, or discard this patch.
include/color.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
      * @param resource     $img   Image handle
467 467
      * @param string|array $color Name or hex string or an RGB array.
468 468
      *
469
-     * @return resource Image color handle.
469
+     * @return integer Image color handle.
470 470
      * @access  public
471 471
      * @static
472 472
      * @uses    ImageColorAllocate() to allocate the color.
@@ -487,7 +487,7 @@  discard block
 block discarded – undo
487 487
      *
488 488
      * @param string $color
489 489
      *
490
-     * @return array RGB color
490
+     * @return resource RGB color
491 491
      * @access  public
492 492
      * @static
493 493
      * @author  Laurent Laville <[email protected]>
@@ -513,7 +513,7 @@  discard block
 block discarded – undo
513 513
      *
514 514
      * @param string $color Case insensitive color name.
515 515
      *
516
-     * @return array RGB color array. If the color was unknown, the result
516
+     * @return integer[] RGB color array. If the color was unknown, the result
517 517
      *               will be black.
518 518
      * @access  public
519 519
      * @static
Please login to merge, or discard this patch.
include/functions.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 $moduleConfig   =& $config_handler->getConfigsByCat(0, $module->getVar('mid'));
38 38
 
39 39
 /**
40
- * @param $columncount
40
+ * @param integer $columncount
41 41
  *
42 42
  * @return string
43 43
  */
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 }
58 58
 
59 59
 /**
60
- * @param $num
60
+ * @param integer $num
61 61
  *
62 62
  * @return string
63 63
  */
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 /**
91 91
  * @param $filename
92 92
  *
93
- * @return bool
93
+ * @return boolean|null
94 94
  */
95 95
 function makethumbs($filename)
96 96
 {/*
Please login to merge, or discard this patch.
include/wizard.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
     }
362 362
 
363 363
     /**
364
-     * @return null
364
+     * @return string
365 365
      */
366 366
     function getFirstIncompleteStep()
367 367
     {
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
      * Gets the step name of the previous step. If the current
386 386
      * step is the first step, then null is returned
387 387
      *
388
-     * @param $step
388
+     * @param string $step
389 389
      *
390 390
      * @return string The name of the previous step, or null
391 391
      */
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
512 512
      * @param string $key     The key for the value to get
513 513
      * @param mixed  $default The value to return if the key doesn't exist
514 514
      *
515
-     * @return mixed Either the key's value or the default value
515
+     * @return string Either the key's value or the default value
516 516
      */
517 517
     function getValue($key, $default = null)
518 518
     {
@@ -580,7 +580,7 @@  discard block
 block discarded – undo
580 580
     }
581 581
 
582 582
     /**
583
-     * @param $key
583
+     * @param string $key
584 584
      *
585 585
      * @return null
586 586
      */
Please login to merge, or discard this patch.
library/Zebra_Image.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
      *
192 192
      *  Initializes the class and the default properties
193 193
      *
194
-     * @return void
194
+     * @return integer
195 195
      */
196 196
     function Zebra_Image()
197 197
     {
@@ -1097,7 +1097,7 @@  discard block
 block discarded – undo
1097 1097
      *
1098 1098
      *                                          Between 0 and 360.
1099 1099
      *
1100
-     * @param mixed $background_color (Optional) The hexadecimal color (like "#FFFFFF" or "#FFF") of the
1100
+     * @param integer $background_color (Optional) The hexadecimal color (like "#FFFFFF" or "#FFF") of the
1101 1101
      *                                uncovered zone after the rotation.
1102 1102
      *
1103 1103
      *                                          When set to -1 the script will preserve transparency for transparent GIF
@@ -1335,7 +1335,7 @@  discard block
 block discarded – undo
1335 1335
      * @param string $default_on_error Hexadecimal representation of a color to be used in case $color is not
1336 1336
      *                                 recognized as a hexadecimal color.
1337 1337
      *
1338
-     * @return array Returns an associative array with the values of (R)ed, (G)reen and (B)lue
1338
+     * @return resource Returns an associative array with the values of (R)ed, (G)reen and (B)lue
1339 1339
      *
1340 1340
      * @access private
1341 1341
      */
@@ -1388,7 +1388,7 @@  discard block
 block discarded – undo
1388 1388
      *
1389 1389
      * @access private
1390 1390
      *
1391
-     * @param $orientation
1391
+     * @param string $orientation
1392 1392
      *
1393 1393
      * @return boolean Returns TRUE on success or FALSE on error.
1394 1394
      *
@@ -1491,7 +1491,7 @@  discard block
 block discarded – undo
1491 1491
      *
1492 1492
      *                                          Default is "#FFFFFF".
1493 1493
      *
1494
-     * @return Returns the identifier of the newly created image.
1494
+     * @return resource the identifier of the newly created image.
1495 1495
      *
1496 1496
      * @access private
1497 1497
      */
Please login to merge, or discard this patch.