summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/Report/AbstractRenderer.php13
-rw-r--r--app/Report/HtmlRenderer.php54
-rw-r--r--app/Report/PdfRenderer.php58
-rw-r--r--app/Report/ReportBasePageHeader.php59
-rw-r--r--app/Report/ReportHtmlPageHeader.php41
-rw-r--r--app/Report/ReportParserGenerate.php2
-rw-r--r--app/Report/ReportPdfPageHeader.php41
-rw-r--r--phpstan-baseline.neon14
-rw-r--r--tests/app/Module/AhnentafelReportModuleTest.php3
-rw-r--r--tests/app/Module/BirthDeathMarriageReportModuleTest.php3
-rw-r--r--tests/app/Module/BirthReportModuleTest.php3
-rw-r--r--tests/app/Module/CemeteryReportModuleTest.php3
-rw-r--r--tests/app/Module/ChangeReportModuleTest.php3
-rw-r--r--tests/app/Module/DeathReportModuleTest.php3
-rw-r--r--tests/app/Module/DescendancyReportModuleTest.php3
-rw-r--r--tests/app/Module/FactSourcesReportModuleTest.php3
-rw-r--r--tests/app/Module/FamilyGroupReportModuleTest.php3
-rw-r--r--tests/app/Module/IndividualFamiliesReportModuleTest.php3
-rw-r--r--tests/app/Module/IndividualReportModuleTest.php3
-rw-r--r--tests/app/Module/MarriageReportModuleTest.php3
-rw-r--r--tests/app/Module/MissingFactsReportModuleTest.php3
-rw-r--r--tests/app/Module/OccupationReportModuleTest.php3
-rw-r--r--tests/app/Module/PedigreeReportModuleTest.php3
-rw-r--r--tests/app/Module/RelatedIndividualsReportModuleTest.php3
24 files changed, 11 insertions, 319 deletions
diff --git a/app/Report/AbstractRenderer.php b/app/Report/AbstractRenderer.php
index 414290b4d6..c474614b41 100644
--- a/app/Report/AbstractRenderer.php
+++ b/app/Report/AbstractRenderer.php
@@ -90,7 +90,7 @@ abstract class AbstractRenderer
/** @var float The default Report font size */
public $default_font_size = 12.0;
- /** @var string Header (H), Page header (PH), Body (B) or Footer (F) */
+ /** @var string Header (H), Body (B) or Footer (F) */
public $processing = 'H';
/** @var bool RTL Language (false=LTR, true=RTL) */
@@ -122,13 +122,6 @@ abstract class AbstractRenderer
abstract public function clearHeader(): void;
/**
- * Create a new Page Header object
- *
- * @return ReportBasePageHeader
- */
- abstract public function createPageHeader(): ReportBasePageHeader;
-
- /**
* Add an element.
*
* @param ReportBaseElement|string $element
@@ -301,9 +294,9 @@ abstract class AbstractRenderer
}
/**
- * Process the Header , Page header, Body or Footer
+ * Process the Header, Body or Footer
*
- * @param string $p Header (H), Page header (PH), Body (B) or Footer (F)
+ * @param string $p Header (H), Body (B) or Footer (F)
*
* @return void
*/
diff --git a/app/Report/HtmlRenderer.php b/app/Report/HtmlRenderer.php
index 6987c812a2..1f6a72beb0 100644
--- a/app/Report/HtmlRenderer.php
+++ b/app/Report/HtmlRenderer.php
@@ -133,9 +133,6 @@ class HtmlRenderer extends AbstractRenderer
/** @var ReportBaseElement[] Array of elements in the header */
public $headerElements = [];
- /** @var ReportBaseElement[] Array of elements in the page header */
- public $pageHeaderElements = [];
-
/** @var ReportBaseElement[] Array of elements in the footer */
public $footerElements = [];
@@ -198,24 +195,6 @@ class HtmlRenderer extends AbstractRenderer
}
/**
- * Generate the page header
- *
- * @return void
- */
- private function runPageHeader(): void
- {
- foreach ($this->pageHeaderElements as $element) {
- if ($element instanceof ReportBaseElement) {
- $element->render($this);
- } elseif ($element === 'footnotetexts') {
- $this->footnotes();
- } elseif ($element === 'addpage') {
- $this->addPage();
- }
- }
- }
-
- /**
* Generate footnotes
*
* @return void
@@ -282,7 +261,6 @@ class HtmlRenderer extends AbstractRenderer
echo '<div id="bodydiv" style="position: relative; top: auto; width: ', $this->noMarginWidth, 'pt; height: 100%;">';
$this->Y = 0;
$this->maxY = 0;
- $this->runPageHeader();
foreach ($this->bodyElements as $element) {
if ($element instanceof ReportBaseElement) {
$element->render($this);
@@ -400,16 +378,6 @@ class HtmlRenderer extends AbstractRenderer
}
/**
- * Create a new Page Header object
- *
- * @return ReportBasePageHeader
- */
- public function createPageHeader(): ReportBasePageHeader
- {
- return new ReportHtmlPageHeader();
- }
-
- /**
* Create a new image object.
*
* @param string $file Filename
@@ -529,18 +497,6 @@ class HtmlRenderer extends AbstractRenderer
}
/**
- * Add a page header.
- *
- * @param ReportBaseElement $element
- *
- * @return void
- */
- public function addPageHeader($element): void
- {
- $this->pageHeaderElements[] = $element;
- }
-
- /**
* Checks the Footnote and numbers them - ReportHtml
*
* @param ReportHtmlFootnote $footnote
@@ -571,16 +527,6 @@ class HtmlRenderer extends AbstractRenderer
}
/**
- * Clear the Page Header - ReportHtml
- *
- * @return void
- */
- public function clearPageHeader(): void
- {
- $this->pageHeaderElements = [];
- }
-
- /**
* Count the number of lines - ReportHtml
*
* @param string $str
diff --git a/app/Report/PdfRenderer.php b/app/Report/PdfRenderer.php
index a632d457e5..7a205ed70d 100644
--- a/app/Report/PdfRenderer.php
+++ b/app/Report/PdfRenderer.php
@@ -67,9 +67,6 @@ class PdfRenderer extends AbstractRenderer
/** @var ReportBaseElement[] Array of elements in the header */
public $headerElements = [];
- /** @var ReportBaseElement[] Array of elements in the page header */
- public $pageHeaderElements = [];
-
/** @var ReportBaseElement[] Array of elements in the footer */
public $footerElements = [];
@@ -110,16 +107,6 @@ class PdfRenderer extends AbstractRenderer
$this->newPage();
}
}
-
- foreach ($this->pageHeaderElements as $element) {
- if ($element instanceof ReportBaseElement) {
- $element->render($this);
- } elseif ($element === 'footnotetexts') {
- $this->footnotes();
- } elseif ($element === 'addpage') {
- $this->newPage();
- }
- }
}
/**
@@ -193,18 +180,6 @@ class PdfRenderer extends AbstractRenderer
}
/**
- * Add an element to the Page Header -PDF
- *
- * @param ReportBaseElement|string $element
- *
- * @return void
- */
- public function addPageHeader($element): void
- {
- $this->pageHeaderElements[] = $element;
- }
-
- /**
* Add an element to the Body -PDF
*
* @param ReportBaseElement|string $element
@@ -241,18 +216,6 @@ class PdfRenderer extends AbstractRenderer
}
/**
- * Remove the page header.
- *
- * @param int $index
- *
- * @return void
- */
- public function removePageHeader(int $index): void
- {
- unset($this->pageHeaderElements[$index]);
- }
-
- /**
* Remove the body.
*
* @param int $index
@@ -288,17 +251,6 @@ class PdfRenderer extends AbstractRenderer
}
/**
- * Clear the Page Header -PDF
- *
- * @return void
- */
- public function clearPageHeader(): void
- {
- unset($this->pageHeaderElements);
- $this->pageHeaderElements = [];
- }
-
- /**
* Set the report.
*
* @param PdfRenderer $report
@@ -653,16 +605,6 @@ class PdfRenderer extends AbstractRenderer
}
/**
- * Create a new Page Header object
- *
- * @return ReportBasePageHeader
- */
- public function createPageHeader(): ReportBasePageHeader
- {
- return new ReportPdfPageHeader();
- }
-
- /**
* Create a new image object.
*
* @param string $file Filename
diff --git a/app/Report/ReportBasePageHeader.php b/app/Report/ReportBasePageHeader.php
deleted file mode 100644
index c8ae8141e7..0000000000
--- a/app/Report/ReportBasePageHeader.php
+++ /dev/null
@@ -1,59 +0,0 @@
-<?php
-
-/**
- * webtrees: online genealogy
- * Copyright (C) 2019 webtrees development team
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-declare(strict_types=1);
-
-namespace Fisharebest\Webtrees\Report;
-
-/**
- * Class ReportBasePageHeader
- */
-class ReportBasePageHeader extends ReportBaseElement
-{
- /** @var ReportBaseElement[] Elements */
- public $elements = [];
-
- /**
- * Create a page header
- */
- public function __construct()
- {
- $this->elements = [];
- }
-
- /**
- * Unknown?
- *
- * @return void
- */
- public function textBox(): void
- {
- $this->elements = [];
- }
-
- /**
- * Add element - PageHeader
- *
- * @param ReportBaseElement $element
- *
- * @return void
- */
- public function addElement($element): void
- {
- $this->elements[] = $element;
- }
-}
diff --git a/app/Report/ReportHtmlPageHeader.php b/app/Report/ReportHtmlPageHeader.php
deleted file mode 100644
index c9f3f48058..0000000000
--- a/app/Report/ReportHtmlPageHeader.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-
-/**
- * webtrees: online genealogy
- * Copyright (C) 2019 webtrees development team
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-declare(strict_types=1);
-
-namespace Fisharebest\Webtrees\Report;
-
-/**
- * Class ReportHtmlPageHeader
- */
-class ReportHtmlPageHeader extends ReportBasePageHeader
-{
- /**
- * PageHeader element renderer
- *
- * @param HtmlRenderer $renderer
- *
- * @return void
- */
- public function render($renderer)
- {
- $renderer->clearPageHeader();
- foreach ($this->elements as $element) {
- $renderer->addPageHeader($element);
- }
- }
-}
diff --git a/app/Report/ReportParserGenerate.php b/app/Report/ReportParserGenerate.php
index 4278e43b0b..2f4bcd7c7c 100644
--- a/app/Report/ReportParserGenerate.php
+++ b/app/Report/ReportParserGenerate.php
@@ -2596,7 +2596,7 @@ class ReportParserGenerate extends ReportParserBase
/**
* XML <NewPage /> element handler
- * Has to be placed in an element (header, pageheader, body or footer)
+ * Has to be placed in an element (header, body or footer)
*
* @return void
*/
diff --git a/app/Report/ReportPdfPageHeader.php b/app/Report/ReportPdfPageHeader.php
deleted file mode 100644
index 652fb0bd32..0000000000
--- a/app/Report/ReportPdfPageHeader.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-
-/**
- * webtrees: online genealogy
- * Copyright (C) 2019 webtrees development team
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-declare(strict_types=1);
-
-namespace Fisharebest\Webtrees\Report;
-
-/**
- * class ReportPdfPageHeader
- */
-class ReportPdfPageHeader extends ReportBasePageHeader
-{
- /**
- * PageHeader element renderer
- *
- * @param PdfRenderer $renderer
- *
- * @return void
- */
- public function render($renderer)
- {
- $renderer->clearPageHeader();
- foreach ($this->elements as $element) {
- $renderer->addPageHeader($element);
- }
- }
-}
diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon
index 330f32e12a..9ff856cef6 100644
--- a/phpstan-baseline.neon
+++ b/phpstan-baseline.neon
@@ -1862,37 +1862,37 @@ parameters:
-
message: "#^Elseif branch is unreachable because previous condition is always true\\.$#"
- count: 8
+ count: 6
path: app/Report/HtmlRenderer.php
-
message: "#^Strict comparison using \\=\\=\\= between \\*NEVER\\* and 'footnotetexts' will always evaluate to false\\.$#"
- count: 4
+ count: 3
path: app/Report/HtmlRenderer.php
-
message: "#^Strict comparison using \\=\\=\\= between \\*NEVER\\* and 'addpage' will always evaluate to false\\.$#"
- count: 4
+ count: 3
path: app/Report/HtmlRenderer.php
-
message: "#^Elseif branch is unreachable because previous condition is always true\\.$#"
- count: 8
+ count: 6
path: app/Report/PdfRenderer.php
-
message: "#^Strict comparison using \\=\\=\\= between \\*NEVER\\* and 'footnotetexts' will always evaluate to false\\.$#"
- count: 4
+ count: 3
path: app/Report/PdfRenderer.php
-
message: "#^Strict comparison using \\=\\=\\= between \\*NEVER\\* and 'addpage' will always evaluate to false\\.$#"
- count: 4
+ count: 3
path: app/Report/PdfRenderer.php
-
message: "#^Array \\(array\\<Fisharebest\\\\Webtrees\\\\Report\\\\ReportBaseElement\\>\\) does not accept Fisharebest\\\\Webtrees\\\\Report\\\\ReportBaseElement\\|string\\.$#"
- count: 4
+ count: 3
path: app/Report/PdfRenderer.php
-
diff --git a/tests/app/Module/AhnentafelReportModuleTest.php b/tests/app/Module/AhnentafelReportModuleTest.php
index f1e9063638..ae4c3622cf 100644
--- a/tests/app/Module/AhnentafelReportModuleTest.php
+++ b/tests/app/Module/AhnentafelReportModuleTest.php
@@ -54,7 +54,6 @@ class AhnentafelReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -63,7 +62,6 @@ class AhnentafelReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -74,7 +72,6 @@ class AhnentafelReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/BirthDeathMarriageReportModuleTest.php b/tests/app/Module/BirthDeathMarriageReportModuleTest.php
index e10d57f4ea..509f6c68a6 100644
--- a/tests/app/Module/BirthDeathMarriageReportModuleTest.php
+++ b/tests/app/Module/BirthDeathMarriageReportModuleTest.php
@@ -47,7 +47,6 @@ class BirthDeathMarriageReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -56,7 +55,6 @@ class BirthDeathMarriageReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -67,7 +65,6 @@ class BirthDeathMarriageReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/BirthReportModuleTest.php b/tests/app/Module/BirthReportModuleTest.php
index 56dc111065..a5b340ef91 100644
--- a/tests/app/Module/BirthReportModuleTest.php
+++ b/tests/app/Module/BirthReportModuleTest.php
@@ -50,7 +50,6 @@ class BirthReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -59,7 +58,6 @@ class BirthReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -70,7 +68,6 @@ class BirthReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/CemeteryReportModuleTest.php b/tests/app/Module/CemeteryReportModuleTest.php
index 42f8acbbfa..11150ece75 100644
--- a/tests/app/Module/CemeteryReportModuleTest.php
+++ b/tests/app/Module/CemeteryReportModuleTest.php
@@ -50,7 +50,6 @@ class CemeteryReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -59,7 +58,6 @@ class CemeteryReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -70,7 +68,6 @@ class CemeteryReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/ChangeReportModuleTest.php b/tests/app/Module/ChangeReportModuleTest.php
index 4d8c0a5abe..4092833e07 100644
--- a/tests/app/Module/ChangeReportModuleTest.php
+++ b/tests/app/Module/ChangeReportModuleTest.php
@@ -51,7 +51,6 @@ class ChangeReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -60,7 +59,6 @@ class ChangeReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -71,7 +69,6 @@ class ChangeReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/DeathReportModuleTest.php b/tests/app/Module/DeathReportModuleTest.php
index ece3c0a777..6b044f82bb 100644
--- a/tests/app/Module/DeathReportModuleTest.php
+++ b/tests/app/Module/DeathReportModuleTest.php
@@ -50,7 +50,6 @@ class DeathReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -59,7 +58,6 @@ class DeathReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -70,7 +68,6 @@ class DeathReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/DescendancyReportModuleTest.php b/tests/app/Module/DescendancyReportModuleTest.php
index 4984073cad..469773c50a 100644
--- a/tests/app/Module/DescendancyReportModuleTest.php
+++ b/tests/app/Module/DescendancyReportModuleTest.php
@@ -54,7 +54,6 @@ class DescendancyReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -63,7 +62,6 @@ class DescendancyReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -74,7 +72,6 @@ class DescendancyReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/FactSourcesReportModuleTest.php b/tests/app/Module/FactSourcesReportModuleTest.php
index 63506912ee..81ee5555b0 100644
--- a/tests/app/Module/FactSourcesReportModuleTest.php
+++ b/tests/app/Module/FactSourcesReportModuleTest.php
@@ -50,7 +50,6 @@ class FactSourcesReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -59,7 +58,6 @@ class FactSourcesReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -70,7 +68,6 @@ class FactSourcesReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/FamilyGroupReportModuleTest.php b/tests/app/Module/FamilyGroupReportModuleTest.php
index 11d7c1c4ea..e6d259ad30 100644
--- a/tests/app/Module/FamilyGroupReportModuleTest.php
+++ b/tests/app/Module/FamilyGroupReportModuleTest.php
@@ -50,7 +50,6 @@ class FamilyGroupReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -59,7 +58,6 @@ class FamilyGroupReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -70,7 +68,6 @@ class FamilyGroupReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/IndividualFamiliesReportModuleTest.php b/tests/app/Module/IndividualFamiliesReportModuleTest.php
index 26668b70c3..9845c7e635 100644
--- a/tests/app/Module/IndividualFamiliesReportModuleTest.php
+++ b/tests/app/Module/IndividualFamiliesReportModuleTest.php
@@ -54,7 +54,6 @@ class IndividualFamiliesReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -63,7 +62,6 @@ class IndividualFamiliesReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -74,7 +72,6 @@ class IndividualFamiliesReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/IndividualReportModuleTest.php b/tests/app/Module/IndividualReportModuleTest.php
index 77efbfcb49..6df057dedb 100644
--- a/tests/app/Module/IndividualReportModuleTest.php
+++ b/tests/app/Module/IndividualReportModuleTest.php
@@ -50,7 +50,6 @@ class IndividualReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -59,7 +58,6 @@ class IndividualReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -70,7 +68,6 @@ class IndividualReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/MarriageReportModuleTest.php b/tests/app/Module/MarriageReportModuleTest.php
index abffe015c2..de5607ac62 100644
--- a/tests/app/Module/MarriageReportModuleTest.php
+++ b/tests/app/Module/MarriageReportModuleTest.php
@@ -50,7 +50,6 @@ class MarriageReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -59,7 +58,6 @@ class MarriageReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -70,7 +68,6 @@ class MarriageReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/MissingFactsReportModuleTest.php b/tests/app/Module/MissingFactsReportModuleTest.php
index 862dc2c0c0..ba666b336d 100644
--- a/tests/app/Module/MissingFactsReportModuleTest.php
+++ b/tests/app/Module/MissingFactsReportModuleTest.php
@@ -50,7 +50,6 @@ class MissingFactsReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -59,7 +58,6 @@ class MissingFactsReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -70,7 +68,6 @@ class MissingFactsReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/OccupationReportModuleTest.php b/tests/app/Module/OccupationReportModuleTest.php
index d7184ff5f0..1efb132fde 100644
--- a/tests/app/Module/OccupationReportModuleTest.php
+++ b/tests/app/Module/OccupationReportModuleTest.php
@@ -50,7 +50,6 @@ class OccupationReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -59,7 +58,6 @@ class OccupationReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -70,7 +68,6 @@ class OccupationReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/PedigreeReportModuleTest.php b/tests/app/Module/PedigreeReportModuleTest.php
index a21109baa6..5b368ea0b2 100644
--- a/tests/app/Module/PedigreeReportModuleTest.php
+++ b/tests/app/Module/PedigreeReportModuleTest.php
@@ -50,7 +50,6 @@ class PedigreeReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -59,7 +58,6 @@ class PedigreeReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -70,7 +68,6 @@ class PedigreeReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper
diff --git a/tests/app/Module/RelatedIndividualsReportModuleTest.php b/tests/app/Module/RelatedIndividualsReportModuleTest.php
index 1e2ded22c4..e18894100e 100644
--- a/tests/app/Module/RelatedIndividualsReportModuleTest.php
+++ b/tests/app/Module/RelatedIndividualsReportModuleTest.php
@@ -50,7 +50,6 @@ class RelatedIndividualsReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportBaseHtml
* @covers \Fisharebest\Webtrees\Report\ReportBaseImage
* @covers \Fisharebest\Webtrees\Report\ReportBaseLine
- * @covers \Fisharebest\Webtrees\Report\ReportBasePageHeader
* @covers \Fisharebest\Webtrees\Report\ReportBaseText
* @covers \Fisharebest\Webtrees\Report\ReportBaseTextbox
* @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider
@@ -59,7 +58,6 @@ class RelatedIndividualsReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml
* @covers \Fisharebest\Webtrees\Report\ReportHtmlImage
* @covers \Fisharebest\Webtrees\Report\ReportHtmlLine
- * @covers \Fisharebest\Webtrees\Report\ReportHtmlPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportHtmlText
* @covers \Fisharebest\Webtrees\Report\ReportHtmlTextbox
* @covers \Fisharebest\Webtrees\Report\ReportParserBase
@@ -70,7 +68,6 @@ class RelatedIndividualsReportModuleTest extends TestCase
* @covers \Fisharebest\Webtrees\Report\ReportPdfHtml
* @covers \Fisharebest\Webtrees\Report\ReportPdfImage
* @covers \Fisharebest\Webtrees\Report\ReportPdfLine
- * @covers \Fisharebest\Webtrees\Report\ReportPdfPageHeader
* @covers \Fisharebest\Webtrees\Report\ReportPdfText
* @covers \Fisharebest\Webtrees\Report\ReportPdfTextBox
* @covers \Fisharebest\Webtrees\Report\TcpdfWrapper