diff --git a/src/tFPDF/PDF.php b/src/tFPDF/PDF.php index 7d67f5b..68141e1 100755 --- a/src/tFPDF/PDF.php +++ b/src/tFPDF/PDF.php @@ -548,9 +548,9 @@ public function __construct($str_orientation = 'P', $str_units = 'mm', $str_size } /** - * @param $int_left - * @param $int_top - * @param null $int_right + * @param int $int_left + * @param int $int_top + * @param int|null $int_right */ public function setMargins($int_left, $int_top, $int_right = null) { @@ -564,7 +564,7 @@ public function setMargins($int_left, $int_top, $int_right = null) } /** - * @param $int_margin + * @param int $int_margin */ public function SetLeftMargin($int_margin) { @@ -576,7 +576,7 @@ public function SetLeftMargin($int_margin) } /** - * @param $int_margin + * @param int $int_margin */ public function SetTopMargin($int_margin) { @@ -585,7 +585,7 @@ public function SetTopMargin($int_margin) } /** - * @param $int_margin + * @param int $int_margin */ public function SetRightMargin($int_margin) { @@ -606,7 +606,7 @@ public function SetAutoPageBreak($bol_auto, $int_margin = 0) } /** - * @param $str_zoom + * @param string $str_zoom * @param string $str_layout */ public function SetDisplayMode($str_zoom, $str_layout = 'default') @@ -638,7 +638,7 @@ public function SetCompression($bol_compression) } /** - * @param $str_title + * @param string $str_title * @param bool $bol_utf8 */ public function SetTitle($str_title, $bol_utf8 = false) @@ -651,7 +651,7 @@ public function SetTitle($str_title, $bol_utf8 = false) } /** - * @param $str_subject + * @param string $str_subject * @param bool $bol_utf8 */ public function SetSubject($str_subject, $bol_utf8 = false) @@ -664,7 +664,7 @@ public function SetSubject($str_subject, $bol_utf8 = false) } /** - * @param $str_author + * @param string $str_author * @param bool $bol_utf8 */ public function SetAuthor($str_author, $bol_utf8 = false) @@ -677,7 +677,7 @@ public function SetAuthor($str_author, $bol_utf8 = false) } /** - * @param $str_keywords + * @param string $str_keywords * @param bool $bol_utf8 */ public function SetKeywords($str_keywords, $bol_utf8 = false) @@ -690,7 +690,7 @@ public function SetKeywords($str_keywords, $bol_utf8 = false) } /** - * @param $str_creator + * @param string $str_creator * @param bool $bol_utf8 */ public function SetCreator($str_creator, $bol_utf8 = false) @@ -712,7 +712,7 @@ public function AliasNbPages($str_alias = '{nb}') } /** - * @param $str_message + * @param string $str_message */ private function Error($str_message) { @@ -851,9 +851,9 @@ public function PageNo() } /** - * @param $int_red - * @param null $int_green - * @param null $int_blue + * @param int $int_red + * @param int|null $int_green + * @param int|null $int_blue */ public function SetDrawColor($int_red, $int_green = null, $int_blue = null) { @@ -869,9 +869,9 @@ public function SetDrawColor($int_red, $int_green = null, $int_blue = null) } /** - * @param $int_red - * @param null $int_green - * @param null $int_blue + * @param int $int_red + * @param int|null $int_green + * @param int|null $int_blue */ public function SetFillColor($int_red, $int_green = null, $int_blue = null) { @@ -888,9 +888,9 @@ public function SetFillColor($int_red, $int_green = null, $int_blue = null) } /** - * @param $int_red - * @param null $int_green - * @param null $int_blue + * @param int $int_red + * @param int|null $int_green + * @param int|null $int_blue */ public function SetTextColor($int_red, $int_green = null, $int_blue = null) { @@ -904,7 +904,7 @@ public function SetTextColor($int_red, $int_green = null, $int_blue = null) } /** - * @param $str_text + * @param string $str_text * @return float|int */ public function GetStringWidth($str_text) @@ -944,7 +944,7 @@ public function GetStringWidth($str_text) } /** - * @param $flt_width + * @param float $flt_width */ public function SetLineWidth($flt_width) { @@ -956,10 +956,10 @@ public function SetLineWidth($flt_width) } /** - * @param $flt_x_1 - * @param $flt_y_1 - * @param $flt_x_2 - * @param $flt_y_2 + * @param float $flt_x_1 + * @param float $flt_y_1 + * @param float $flt_x_2 + * @param float $flt_y_2 */ public function Line($flt_x_1, $flt_y_1, $flt_x_2, $flt_y_2) { @@ -970,10 +970,10 @@ public function Line($flt_x_1, $flt_y_1, $flt_x_2, $flt_y_2) } /** - * @param $flt_x - * @param $flt_y - * @param $flt_width - * @param $flt_height + * @param float $flt_x + * @param float $flt_y + * @param float $flt_width + * @param float $flt_height * @param string $str_style */ public function Rect($flt_x, $flt_y, $flt_width, $flt_height, $str_style = '') @@ -992,7 +992,7 @@ public function Rect($flt_x, $flt_y, $flt_width, $flt_height, $str_style = '') } /** - * @param $str_family + * @param string $str_family * @param string $str_style * @param string $str_file * @param bool $bol_unicode @@ -1123,7 +1123,7 @@ public function AddFont($str_family, $str_style = '', $str_file = '', $bol_unico } /** - * @param $str_family + * @param string $str_family * @param string $str_style * @param int $int_size */ @@ -1188,7 +1188,7 @@ public function SetFont($str_family, $str_style = '', $int_size = 0) } /** - * @param $int_size + * @param int $int_size */ public function SetFontSize($int_size) { @@ -1232,10 +1232,10 @@ public function SetLink($mix_link_key, $int_y = 0, $int_page = -1) } /** - * @param $flt_x - * @param $flt_y - * @param $flt_width - * @param $flt_height + * @param float $flt_x + * @param float $flt_y + * @param float $flt_width + * @param float $flt_height * @param $mix_link_key */ public function Link($flt_x, $flt_y, $flt_width, $flt_height, $mix_link_key) @@ -1251,9 +1251,9 @@ public function Link($flt_x, $flt_y, $flt_width, $flt_height, $mix_link_key) } /** - * @param $flt_x - * @param $flt_y - * @param $str_text + * @param float $flt_x + * @param float $flt_y + * @param string $str_text */ public function Text($flt_x, $flt_y, $str_text) { @@ -1424,9 +1424,9 @@ public function Cell($flt_width, $flt_height = 0, $str_text = '', $int_border = } /** - * @param $flt_width - * @param $flt_height - * @param $str_text + * @param float $flt_width + * @param float $flt_height + * @param string $str_text * @param int $int_border * @param string $str_alignment * @param bool $bol_fill @@ -1718,7 +1718,7 @@ public function Ln($flt_height = null) } /** - * @param $str_file + * @param string $str_file * @param float|null $flt_x * @param float|null $flt_y * @param int $int_width @@ -1805,7 +1805,7 @@ public function GetX() } /** - * @param $flt_position_x + * @param float $flt_position_x */ public function SetX($flt_position_x) { @@ -1827,7 +1827,7 @@ public function GetY() } /** - * @param $flt_position_y + * @param float $flt_position_y */ public function SetY($flt_position_y) { @@ -1925,7 +1925,7 @@ private function getPageSize($mix_size) } /** - * @param $str_orientation + * @param string $str_orientation * @param $mix_size */ private function BeginPage($str_orientation, $mix_size) @@ -1976,7 +1976,7 @@ private function EndPage() } /** - * @param $str_font + * @param string $str_font * @return array */ private function LoadFont($str_font) @@ -1991,7 +1991,7 @@ private function LoadFont($str_font) } /** - * @param $str_text + * @param string $str_text * @return mixed */ protected function EscapeString($str_text) @@ -2005,7 +2005,7 @@ protected function EscapeString($str_text) } /** - * @param $s + * @param string $s * @return string */ protected function TextString($s) @@ -2015,7 +2015,7 @@ protected function TextString($s) } /** - * @param $str_text + * @param string $str_text * @return string */ private function UTF8toUTF16($str_text) @@ -2057,7 +2057,7 @@ private function DoUnderline($flt_x, $flt_y, $str_text) } /** - * @param $str_file + * @param string $str_file * @return array */ private function _parsejpg($str_file) @@ -2083,7 +2083,7 @@ private function _parsejpg($str_file) } /** - * @param $str_file + * @param string $str_file * @return array */ private function _parsepng($str_file) @@ -2100,7 +2100,7 @@ private function _parsepng($str_file) /** * @param $ptr_file - * @param $str_file + * @param string $str_file * @return array */ private function _parsepngstream($ptr_file, $str_file) @@ -2236,7 +2236,7 @@ private function _parsepngstream($ptr_file, $str_file) /** * @param $ptr_file - * @param $int_bytes + * @param int $int_bytes * @return string */ private function _readstream($ptr_file, $int_bytes) @@ -2269,7 +2269,7 @@ private function _readint($ptr_file) } /** - * @param $str_file + * @param string $str_file * @return array */ private function _parsegif($str_file) @@ -2324,7 +2324,7 @@ protected function NewObject() } /** - * @param $str_data + * @param string $str_data */ protected function PutStream($str_data) { @@ -2334,7 +2334,7 @@ protected function PutStream($str_data) } /** - * @param $str_data + * @param string $str_data */ protected function Out($str_data) { @@ -2799,7 +2799,7 @@ private function PutImages() } /** - * @param $arr_info + * @param array $arr_info */ public function PutImage(&$arr_info) { @@ -3013,7 +3013,7 @@ public function EndDoc() /** * Converts UTF-8 strings to UTF16-BE * - * @param $str_input + * @param string $str_input * @param bool $bol_set_byte_order_mark * @return string */ @@ -3030,7 +3030,7 @@ public function UTF8ToUTF16BE($str_input, $bol_set_byte_order_mark = true) /** * Converts UTF-8 strings to codepoints array * - * @param $str_input + * @param string $str_input * @return array */ public function UTF8StringToArray($str_input) @@ -3062,8 +3062,8 @@ public function UTF8StringToArray($str_input) } /** - * @param $str_name - * @param $str_data + * @param string $str_name + * @param string $str_data * @return int */ public function writeFontFile($str_name, $str_data) @@ -3072,7 +3072,7 @@ public function writeFontFile($str_name, $str_data) } /** - * @param $str_name + * @param string $str_name * @return string */ public function readFontFile($str_name) @@ -3081,7 +3081,7 @@ public function readFontFile($str_name) } /** - * @param $str_name + * @param string $str_name * @return bool */ public function clearFontFile($str_name) @@ -3094,7 +3094,7 @@ public function clearFontFile($str_name) } /** - * @param $str_path + * @param string $str_path */ public function configureFontWritePath($str_path) { diff --git a/src/tFPDF/PDFBarcode.php b/src/tFPDF/PDFBarcode.php index 791431a..487a5da 100644 --- a/src/tFPDF/PDFBarcode.php +++ b/src/tFPDF/PDFBarcode.php @@ -285,11 +285,11 @@ private function Init39() } /** - * @param $flt_pos_x - * @param $flt_pos_y - * @param $str_code - * @param $flt_width - * @param $flt_height + * @param float $flt_pos_x + * @param float $flt_pos_y + * @param string $str_code + * @param float $flt_width + * @param float $flt_height */ public function Code128($flt_pos_x, $flt_pos_y, $str_code, $flt_width, $flt_height) { @@ -380,9 +380,9 @@ public function Code128($flt_pos_x, $flt_pos_y, $str_code, $flt_width, $flt_heig } /** - * @param $flt_pos_x - * @param $flt_pos_y - * @param $str_code + * @param float $flt_pos_x + * @param float $flt_pos_y + * @param string $str_code * @param float $flt_baseline * @param int $flt_height * @throws \Exception