diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-10-14 17:42:00 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-10-14 17:42:17 +0100 |
| commit | 67c69ce52653915e1a8443e864d5536997136f75 (patch) | |
| tree | 82247934cd14f9d0dd73fb576d6508e9eca27a8a /app/Report/ReportPdfImage.php | |
| parent | c1e3912ece0bac545d62e7e7df6ec6691252b6d3 (diff) | |
| download | webtrees-67c69ce52653915e1a8443e864d5536997136f75.tar.gz webtrees-67c69ce52653915e1a8443e864d5536997136f75.tar.bz2 webtrees-67c69ce52653915e1a8443e864d5536997136f75.zip | |
Reduce differences between PDF and HTML report elements
Diffstat (limited to 'app/Report/ReportPdfImage.php')
| -rw-r--r-- | app/Report/ReportPdfImage.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Report/ReportPdfImage.php b/app/Report/ReportPdfImage.php index 947a2e7418..e81b1fc457 100644 --- a/app/Report/ReportPdfImage.php +++ b/app/Report/ReportPdfImage.php @@ -103,11 +103,11 @@ class ReportPdfImage extends ReportBaseImage /** * Get the image height * - * @param ReportTcpdf $pdf + * @param ReportTcpdf $renderer * * @return float */ - public function getHeight($pdf): float + public function getHeight($renderer): float { return $this->height; } @@ -115,11 +115,11 @@ class ReportPdfImage extends ReportBaseImage /** * Get the image width. * - * @param $pdf + * @param $renderer * * @return float|array */ - public function getWidth($pdf) + public function getWidth($renderer) { return $this->width; } |
