1 | <?php |
||
12 | class PdfHelper |
||
13 | { |
||
14 | |||
15 | |||
16 | /** |
||
17 | * @param Fpdi $pdf |
||
18 | * @param $value |
||
19 | * @param $x |
||
20 | * @param null $align |
||
21 | * @return int|string |
||
22 | */ |
||
23 | 1 | public static function pdfXPosition($pdf, $value, $x, $align = null) |
|
39 | |||
40 | /** |
||
41 | * @param Fpdi $pdf |
||
42 | * @param $value |
||
43 | * @param $y |
||
44 | * @return int|string |
||
45 | */ |
||
46 | 1 | public static function pdfYPosition($pdf, $value, $y) |
|
61 | |||
62 | /** |
||
63 | * @param Fpdi $pdf |
||
64 | * @param array $colors |
||
65 | * @param bool $ret |
||
66 | * @return string |
||
67 | */ |
||
68 | public static function pdfPrepareColor($pdf, $colors = [], $ret = false) |
||
75 | } |
||
76 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.