@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | * |
31 | 31 | * @param string $orientation page orientation, same as TCPDF |
32 | 32 | * @param string $unit User measure unit, same as TCPDF |
33 | - * @param mixed $format The format used for pages, same as TCPDF |
|
33 | + * @param string $format The format used for pages, same as TCPDF |
|
34 | 34 | * @param boolean $unicode TRUE means that the input text is unicode (default = true) |
35 | 35 | * @param String $encoding charset encoding; default is UTF-8 |
36 | 36 | * @param boolean $diskcache if TRUE reduce the RAM memory usage by caching temporary data on filesystem (slower). |
@@ -1407,7 +1407,6 @@ discard block |
||
1407 | 1407 | * set $_myLastPageGroup; |
1408 | 1408 | * |
1409 | 1409 | * @access public |
1410 | - * @param integer $myLastPageGroup; |
|
1411 | 1410 | * @param integer $myLastPageGroup |
1412 | 1411 | */ |
1413 | 1412 | public function setMyLastPageGroup($myLastPageGroup) |
@@ -1430,7 +1429,6 @@ discard block |
||
1430 | 1429 | * set $_myLastPageGroupNb; |
1431 | 1430 | * |
1432 | 1431 | * @access public |
1433 | - * @param integer $myLastPageGroupNb; |
|
1434 | 1432 | * @param integer $myLastPageGroupNb |
1435 | 1433 | */ |
1436 | 1434 | public function setMyLastPageGroupNb($myLastPageGroupNb) |
@@ -43,6 +43,7 @@ |
||
43 | 43 | * Set the HTML2PDF parent object |
44 | 44 | * |
45 | 45 | * @param &HTML2PDF reference to the HTML2PDF parent $object |
46 | + * @param HTML2PDF_myPdf|null $pdf |
|
46 | 47 | * @access public |
47 | 48 | */ |
48 | 49 | public function setPdfParent(&$pdf) |
@@ -50,6 +50,7 @@ |
||
50 | 50 | * Define the HTML code to parse |
51 | 51 | * |
52 | 52 | * @param string HTML code |
53 | + * @param string $html |
|
53 | 54 | * @access public |
54 | 55 | */ |
55 | 56 | public function setHTML($html) |
@@ -1123,7 +1123,7 @@ discard block |
||
1123 | 1123 | * @param array $frame |
1124 | 1124 | * @param int $maskNo |
1125 | 1125 | * @param int $level |
1126 | - * @return array mask |
|
1126 | + * @return integer mask |
|
1127 | 1127 | */ |
1128 | 1128 | protected function makeMask($width, $frame, $maskNo, $level) { |
1129 | 1129 | $masked = array_fill(0, $width, str_repeat("\0", $width)); |
@@ -1165,7 +1165,7 @@ discard block |
||
1165 | 1165 | /** |
1166 | 1166 | * evaluateSymbol |
1167 | 1167 | * @param int $width |
1168 | - * @param array $frame |
|
1168 | + * @param integer $frame |
|
1169 | 1169 | * @return int demerit |
1170 | 1170 | */ |
1171 | 1171 | protected function evaluateSymbol($width, $frame) { |
@@ -2035,7 +2035,7 @@ discard block |
||
2035 | 2035 | |
2036 | 2036 | /** |
2037 | 2037 | * convertData |
2038 | - * @param array $items |
|
2038 | + * @param integer $items |
|
2039 | 2039 | * @return array items |
2040 | 2040 | */ |
2041 | 2041 | protected function convertData($items) { |
@@ -2490,7 +2490,7 @@ discard block |
||
2490 | 2490 | |
2491 | 2491 | /** |
2492 | 2492 | * Return BCH encoded format information pattern. |
2493 | - * @param array $mask |
|
2493 | + * @param integer $mask |
|
2494 | 2494 | * @param int $level error correction level |
2495 | 2495 | * @return BCH encoded format information pattern |
2496 | 2496 | */ |
@@ -64,6 +64,7 @@ |
||
64 | 64 | * Custom query result. |
65 | 65 | * |
66 | 66 | * @param class_name A string that represents the type of object you want back |
67 | + * @param string $class_name |
|
67 | 68 | * @return array of objects |
68 | 69 | */ |
69 | 70 | public function custom_result_object($class_name) |
@@ -164,6 +164,7 @@ |
||
164 | 164 | * |
165 | 165 | * @access private called by execute() |
166 | 166 | * @param string an SQL query |
167 | + * @param string $sql |
|
167 | 168 | * @return string |
168 | 169 | */ |
169 | 170 | function _prep_query($sql) |
@@ -293,6 +293,8 @@ discard block |
||
293 | 293 | * @access private |
294 | 294 | * @param string |
295 | 295 | * @param string |
296 | + * @param string $string |
|
297 | + * @param string $key |
|
296 | 298 | * @return string |
297 | 299 | */ |
298 | 300 | function _xor_merge($string, $key) |
@@ -365,6 +367,7 @@ discard block |
||
365 | 367 | * @param string |
366 | 368 | * @param string |
367 | 369 | * @param string $data |
370 | + * @param string $key |
|
368 | 371 | * @return string |
369 | 372 | */ |
370 | 373 | function _add_cipher_noise($data, $key) |
@@ -396,6 +399,8 @@ discard block |
||
396 | 399 | * |
397 | 400 | * @access public |
398 | 401 | * @param type |
402 | + * @param string $data |
|
403 | + * @param string $key |
|
399 | 404 | * @return string |
400 | 405 | */ |
401 | 406 | function _remove_cipher_noise($data, $key) |
@@ -1010,6 +1010,9 @@ |
||
1010 | 1010 | return $this->x; |
1011 | 1011 | } |
1012 | 1012 | |
1013 | +/** |
|
1014 | + * @param integer $x |
|
1015 | + */ |
|
1013 | 1016 | function SetX($x) |
1014 | 1017 | { |
1015 | 1018 | // Set x position |
@@ -461,6 +461,7 @@ |
||
461 | 461 | * @param string the file path |
462 | 462 | * @param string the permissions |
463 | 463 | * @param integer $perm |
464 | + * @param string $path |
|
464 | 465 | * @return bool |
465 | 466 | */ |
466 | 467 | function chmod($path, $perm) |