@@ -33,7 +33,7 @@ |
||
33 | 33 | public $debugArray = array(); |
34 | 34 | |
35 | 35 | /** |
36 | - * @param $debug |
|
36 | + * @param boolean $debug |
|
37 | 37 | */ |
38 | 38 | protected function __construct($debug) |
39 | 39 | { |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
45 | - * @param $columncount |
|
45 | + * @param integer $columncount |
|
46 | 46 | * |
47 | 47 | * @return string |
48 | 48 | */ |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | } |
63 | 63 | |
64 | 64 | /** |
65 | - * @param $num |
|
65 | + * @param integer $num |
|
66 | 66 | * |
67 | 67 | * @return string |
68 | 68 | */ |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | /** |
94 | 94 | * @param $filename |
95 | 95 | * |
96 | - * @return bool |
|
96 | + * @return boolean|null |
|
97 | 97 | */ |
98 | 98 | public static function createThumbs($filename) |
99 | 99 | {/* |
@@ -466,7 +466,7 @@ discard block |
||
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 boolean Image color handle. |
|
470 | 470 | * @access public |
471 | 471 | * @static |
472 | 472 | * @uses imagefilledarc() to allocate the color. |
@@ -487,7 +487,7 @@ discard block |
||
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 |
||
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 |
@@ -360,7 +360,7 @@ discard block |
||
360 | 360 | } |
361 | 361 | |
362 | 362 | /** |
363 | - * @return null |
|
363 | + * @return string |
|
364 | 364 | */ |
365 | 365 | public function getFirstIncompleteStep() |
366 | 366 | { |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | * Gets the step name of the previous step. If the current |
385 | 385 | * step is the first step, then null is returned |
386 | 386 | * |
387 | - * @param $step |
|
387 | + * @param string $step |
|
388 | 388 | * |
389 | 389 | * @return string The name of the previous step, or null |
390 | 390 | */ |
@@ -579,7 +579,7 @@ discard block |
||
579 | 579 | } |
580 | 580 | |
581 | 581 | /** |
582 | - * @param $key |
|
582 | + * @param string $key |
|
583 | 583 | * |
584 | 584 | * @return null |
585 | 585 | */ |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | * |
192 | 192 | * Initializes the class and the default properties |
193 | 193 | * |
194 | - * @return void |
|
194 | + * @return integer |
|
195 | 195 | */ |
196 | 196 | public function __construct() |
197 | 197 | { |
@@ -990,7 +990,7 @@ discard block |
||
990 | 990 | * |
991 | 991 | * Between 0 and 360. |
992 | 992 | * |
993 | - * @param mixed $background_color (Optional) The hexadecimal color (like "#FFFFFF" or "#FFF") of the |
|
993 | + * @param integer $background_color (Optional) The hexadecimal color (like "#FFFFFF" or "#FFF") of the |
|
994 | 994 | * uncovered zone after the rotation. |
995 | 995 | * |
996 | 996 | * When set to -1 the script will preserve transparency for transparent GIF |
@@ -1215,7 +1215,7 @@ discard block |
||
1215 | 1215 | * @param string $default_on_error Hexadecimal representation of a color to be used in case $color is not |
1216 | 1216 | * recognized as a hexadecimal color. |
1217 | 1217 | * |
1218 | - * @return array Returns an associative array with the values of (R)ed, (G)reen and (B)lue |
|
1218 | + * @return resource Returns an associative array with the values of (R)ed, (G)reen and (B)lue |
|
1219 | 1219 | * |
1220 | 1220 | * @access private |
1221 | 1221 | */ |
@@ -1265,7 +1265,7 @@ discard block |
||
1265 | 1265 | * |
1266 | 1266 | * @access private |
1267 | 1267 | * |
1268 | - * @param $orientation |
|
1268 | + * @param string $orientation |
|
1269 | 1269 | * |
1270 | 1270 | * @return boolean Returns TRUE on success or FALSE on error. |
1271 | 1271 | * |
@@ -1339,7 +1339,7 @@ discard block |
||
1339 | 1339 | * |
1340 | 1340 | * Default is "#FFFFFF". |
1341 | 1341 | * |
1342 | - * @return Returns the identifier of the newly created image. |
|
1342 | + * @return resource the identifier of the newly created image. |
|
1343 | 1343 | * |
1344 | 1344 | * @access private |
1345 | 1345 | */ |