diff options
23 files changed, 0 insertions, 341 deletions
diff --git a/app/Report/AbstractRenderer.php b/app/Report/AbstractRenderer.php index c474614b41..c4b4fb9322 100644 --- a/app/Report/AbstractRenderer.php +++ b/app/Report/AbstractRenderer.php @@ -203,16 +203,6 @@ abstract class AbstractRenderer abstract public function createText(string $style, string $color): ReportBaseText; /** - * Create an HTML element. - * - * @param string $tag - * @param string[] $attrs - * - * @return ReportBaseHtml - */ - abstract public function createHTML(string $tag, array $attrs): ReportBaseHtml; - - /** * Create a line. * * @param float $x1 diff --git a/app/Report/HtmlRenderer.php b/app/Report/HtmlRenderer.php index 1f6a72beb0..bc610d37a1 100644 --- a/app/Report/HtmlRenderer.php +++ b/app/Report/HtmlRenderer.php @@ -438,19 +438,6 @@ class HtmlRenderer extends AbstractRenderer } /** - * Create an HTML element. - * - * @param string $tag - * @param string[] $attrs - * - * @return ReportBaseHtml - */ - public function createHTML(string $tag, array $attrs): ReportBaseHtml - { - return new ReportHtmlHtml($tag, $attrs); - } - - /** * Clear the Header * * @return void diff --git a/app/Report/PdfRenderer.php b/app/Report/PdfRenderer.php index 7a205ed70d..cbd66e2e13 100644 --- a/app/Report/PdfRenderer.php +++ b/app/Report/PdfRenderer.php @@ -663,17 +663,4 @@ class PdfRenderer extends AbstractRenderer { return new ReportPdfLine($x1, $y1, $x2, $y2); } - - /** - * Create an HTML element. - * - * @param string $tag - * @param string[] $attrs - * - * @return ReportBaseHtml - */ - public function createHTML(string $tag, array $attrs): ReportBaseHtml - { - return new ReportPdfHtml($tag, $attrs); - } } diff --git a/app/Report/ReportBaseHtml.php b/app/Report/ReportBaseHtml.php deleted file mode 100644 index ce35333171..0000000000 --- a/app/Report/ReportBaseHtml.php +++ /dev/null @@ -1,85 +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 ReportBaseHtml - */ -class ReportBaseHtml extends ReportBaseElement -{ - /** @var string The XML tag. */ - public $tag; - - /** @var string[] Attributes of the XML tag. */ - public $attrs; - - /** @var ReportBaseElement[] A list of elements. */ - public $elements = []; - - /** - * Create an element. - * - * @param string $tag - * @param string[] $attrs - */ - public function __construct(string $tag, array $attrs) - { - $this->tag = $tag; - $this->attrs = $attrs; - } - - /** - * Get the start tag. - * - * @return string - */ - public function getStart(): string - { - $str = '<' . $this->tag . ' '; - foreach ($this->attrs as $key => $value) { - $str .= $key . '="' . $value . '" '; - } - $str .= '>'; - - return $str; - } - - /** - * Get the end tag. - * - * @return string - */ - public function getEnd(): string - { - return '</' . $this->tag . '>'; - } - - /** - * Add an element. - * - * @param ReportBaseElement $element - * - * @return void - */ - public function addElement($element): void - { - $this->elements[] = $element; - } -} diff --git a/app/Report/ReportHtmlHtml.php b/app/Report/ReportHtmlHtml.php deleted file mode 100644 index 4938a91c7d..0000000000 --- a/app/Report/ReportHtmlHtml.php +++ /dev/null @@ -1,75 +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 ReportHtmlHtml - */ -class ReportHtmlHtml extends ReportBaseHtml -{ - /** - * Render the elements. - * - * @param HtmlRenderer $renderer - * @param bool $sub - * @param bool $inat - * - * @return void|string - */ - public function render($renderer, $sub = false, $inat = true) - { - if (!empty($this->attrs['wt_style'])) { - $renderer->setCurrentStyle($this->attrs['wt_style']); - } - - $this->text = $this->getStart() . $this->text; - foreach ($this->elements as $element) { - if ($element === 'footnotetexts') { - $renderer->footnotes(); - } elseif ($element === 'addpage') { - $renderer->addPage(); - } elseif ($element instanceof self) { - $element->render($renderer, true, false); - } else { - $element->render($renderer); - } - } - $this->text .= $this->getEnd(); - if ($sub) { - return $this->text; - } - - // If not called by an other attribute - if ($inat) { - $startX = $renderer->getX(); - $startY = $renderer->getY(); - $width = $renderer->getRemainingWidth(); - echo '<div style="position: absolute;top: ', $startY, 'pt;', $renderer->alignRTL, ': ', $startX, 'pt;width: ', $width, 'pt;">'; - $startY += $renderer->getCurrentStyleHeight() + 2; - $renderer->setY($startY); - } - - echo $this->text; - - if ($inat) { - echo "</div>\n"; - } - } -} diff --git a/app/Report/ReportPdfHtml.php b/app/Report/ReportPdfHtml.php deleted file mode 100644 index c8d156d58d..0000000000 --- a/app/Report/ReportPdfHtml.php +++ /dev/null @@ -1,62 +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 ReportPdfHtml - */ -class ReportPdfHtml extends ReportBaseHtml -{ - /** - * Render the output. - * - * @param PdfRenderer $renderer - * @param bool $sub - * - * @return string|void - */ - public function render($renderer, $sub = false) - { - if (!empty($this->attrs['style'])) { - $renderer->setCurrentStyle($this->attrs['style']); - } - if (!empty($this->attrs['width'])) { - $this->attrs['width'] *= 3.9; - } - - $this->text = $this->getStart() . $this->text; - foreach ($this->elements as $element) { - if ($element === 'footnotetexts') { - $renderer->Footnotes(); - } elseif ($element === 'addpage') { - $renderer->newPage(); - } elseif ($element instanceof self) { - $element->render($renderer, true); - } else { - $element->render($renderer); - } - } - $this->text .= $this->getEnd(); - if ($sub) { - return $this->text; - } - $renderer->tcpdf->writeHTML($this->text); //prints 2 empty cells in the Expanded Relatives report - } -} diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon index 9ff856cef6..2eb76054df 100644 --- a/phpstan-baseline.neon +++ b/phpstan-baseline.neon @@ -1941,21 +1941,6 @@ parameters: path: app/Report/ReportHtmlFootnote.php - - message: "#^Strict comparison using \\=\\=\\= between Fisharebest\\\\Webtrees\\\\Report\\\\ReportBaseElement and 'footnotetexts' will always evaluate to false\\.$#" - count: 1 - path: app/Report/ReportHtmlHtml.php - - - - message: "#^Strict comparison using \\=\\=\\= between Fisharebest\\\\Webtrees\\\\Report\\\\ReportBaseElement and 'addpage' will always evaluate to false\\.$#" - count: 1 - path: app/Report/ReportHtmlHtml.php - - - - message: "#^Method Fisharebest\\\\Webtrees\\\\Report\\\\ReportHtmlHtml\\:\\:render\\(\\) should return string\\|void but return statement is missing\\.$#" - count: 1 - path: app/Report/ReportHtmlHtml.php - - - message: "#^Method Fisharebest\\\\Webtrees\\\\Report\\\\ReportHtmlText\\:\\:getWidth\\(\\) return type has no value type specified in iterable type array\\.$#" count: 1 path: app/Report/ReportHtmlText.php @@ -2191,26 +2176,6 @@ parameters: path: app/Report/ReportPdfFootnote.php - - message: "#^Array \\(array\\<string\\>\\) does not accept float\\.$#" - count: 1 - path: app/Report/ReportPdfHtml.php - - - - message: "#^Strict comparison using \\=\\=\\= between Fisharebest\\\\Webtrees\\\\Report\\\\ReportBaseElement and 'footnotetexts' will always evaluate to false\\.$#" - count: 1 - path: app/Report/ReportPdfHtml.php - - - - message: "#^Strict comparison using \\=\\=\\= between Fisharebest\\\\Webtrees\\\\Report\\\\ReportBaseElement and 'addpage' will always evaluate to false\\.$#" - count: 1 - path: app/Report/ReportPdfHtml.php - - - - message: "#^Method Fisharebest\\\\Webtrees\\\\Report\\\\ReportPdfHtml\\:\\:render\\(\\) should return string\\|void but return statement is missing\\.$#" - count: 1 - path: app/Report/ReportPdfHtml.php - - - message: "#^Method Fisharebest\\\\Webtrees\\\\Report\\\\ReportPdfText\\:\\:getWidth\\(\\) return type has no value type specified in iterable type array\\.$#" count: 1 path: app/Report/ReportPdfText.php diff --git a/tests/app/Module/AhnentafelReportModuleTest.php b/tests/app/Module/AhnentafelReportModuleTest.php index ae4c3622cf..f2518f4fe2 100644 --- a/tests/app/Module/AhnentafelReportModuleTest.php +++ b/tests/app/Module/AhnentafelReportModuleTest.php @@ -51,7 +51,6 @@ class AhnentafelReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -59,7 +58,6 @@ class AhnentafelReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -69,7 +67,6 @@ class AhnentafelReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/BirthDeathMarriageReportModuleTest.php b/tests/app/Module/BirthDeathMarriageReportModuleTest.php index 509f6c68a6..a8bd71a520 100644 --- a/tests/app/Module/BirthDeathMarriageReportModuleTest.php +++ b/tests/app/Module/BirthDeathMarriageReportModuleTest.php @@ -44,7 +44,6 @@ class BirthDeathMarriageReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -52,7 +51,6 @@ class BirthDeathMarriageReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -62,7 +60,6 @@ class BirthDeathMarriageReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/BirthReportModuleTest.php b/tests/app/Module/BirthReportModuleTest.php index a5b340ef91..faf92e889d 100644 --- a/tests/app/Module/BirthReportModuleTest.php +++ b/tests/app/Module/BirthReportModuleTest.php @@ -47,7 +47,6 @@ class BirthReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -55,7 +54,6 @@ class BirthReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -65,7 +63,6 @@ class BirthReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/CemeteryReportModuleTest.php b/tests/app/Module/CemeteryReportModuleTest.php index 11150ece75..1cc7a2913f 100644 --- a/tests/app/Module/CemeteryReportModuleTest.php +++ b/tests/app/Module/CemeteryReportModuleTest.php @@ -47,7 +47,6 @@ class CemeteryReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -55,7 +54,6 @@ class CemeteryReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -65,7 +63,6 @@ class CemeteryReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/ChangeReportModuleTest.php b/tests/app/Module/ChangeReportModuleTest.php index 4092833e07..d4eaa448b1 100644 --- a/tests/app/Module/ChangeReportModuleTest.php +++ b/tests/app/Module/ChangeReportModuleTest.php @@ -48,7 +48,6 @@ class ChangeReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -56,7 +55,6 @@ class ChangeReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -66,7 +64,6 @@ class ChangeReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/DeathReportModuleTest.php b/tests/app/Module/DeathReportModuleTest.php index 6b044f82bb..bed352f275 100644 --- a/tests/app/Module/DeathReportModuleTest.php +++ b/tests/app/Module/DeathReportModuleTest.php @@ -47,7 +47,6 @@ class DeathReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -55,7 +54,6 @@ class DeathReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -65,7 +63,6 @@ class DeathReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/DescendancyReportModuleTest.php b/tests/app/Module/DescendancyReportModuleTest.php index 469773c50a..2c17e1b407 100644 --- a/tests/app/Module/DescendancyReportModuleTest.php +++ b/tests/app/Module/DescendancyReportModuleTest.php @@ -51,7 +51,6 @@ class DescendancyReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -59,7 +58,6 @@ class DescendancyReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -69,7 +67,6 @@ class DescendancyReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/FactSourcesReportModuleTest.php b/tests/app/Module/FactSourcesReportModuleTest.php index 81ee5555b0..af83100f6b 100644 --- a/tests/app/Module/FactSourcesReportModuleTest.php +++ b/tests/app/Module/FactSourcesReportModuleTest.php @@ -47,7 +47,6 @@ class FactSourcesReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -55,7 +54,6 @@ class FactSourcesReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -65,7 +63,6 @@ class FactSourcesReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/FamilyGroupReportModuleTest.php b/tests/app/Module/FamilyGroupReportModuleTest.php index e6d259ad30..3b21e8bbcd 100644 --- a/tests/app/Module/FamilyGroupReportModuleTest.php +++ b/tests/app/Module/FamilyGroupReportModuleTest.php @@ -47,7 +47,6 @@ class FamilyGroupReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -55,7 +54,6 @@ class FamilyGroupReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -65,7 +63,6 @@ class FamilyGroupReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/IndividualFamiliesReportModuleTest.php b/tests/app/Module/IndividualFamiliesReportModuleTest.php index 9845c7e635..e22560a75e 100644 --- a/tests/app/Module/IndividualFamiliesReportModuleTest.php +++ b/tests/app/Module/IndividualFamiliesReportModuleTest.php @@ -51,7 +51,6 @@ class IndividualFamiliesReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -59,7 +58,6 @@ class IndividualFamiliesReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -69,7 +67,6 @@ class IndividualFamiliesReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/IndividualReportModuleTest.php b/tests/app/Module/IndividualReportModuleTest.php index 6df057dedb..8344964d1c 100644 --- a/tests/app/Module/IndividualReportModuleTest.php +++ b/tests/app/Module/IndividualReportModuleTest.php @@ -47,7 +47,6 @@ class IndividualReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -55,7 +54,6 @@ class IndividualReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -65,7 +63,6 @@ class IndividualReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/MarriageReportModuleTest.php b/tests/app/Module/MarriageReportModuleTest.php index de5607ac62..0bd4b3c104 100644 --- a/tests/app/Module/MarriageReportModuleTest.php +++ b/tests/app/Module/MarriageReportModuleTest.php @@ -47,7 +47,6 @@ class MarriageReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -55,7 +54,6 @@ class MarriageReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -65,7 +63,6 @@ class MarriageReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/MissingFactsReportModuleTest.php b/tests/app/Module/MissingFactsReportModuleTest.php index ba666b336d..5970d9ed61 100644 --- a/tests/app/Module/MissingFactsReportModuleTest.php +++ b/tests/app/Module/MissingFactsReportModuleTest.php @@ -47,7 +47,6 @@ class MissingFactsReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -55,7 +54,6 @@ class MissingFactsReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -65,7 +63,6 @@ class MissingFactsReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/OccupationReportModuleTest.php b/tests/app/Module/OccupationReportModuleTest.php index 1efb132fde..42b0f7c338 100644 --- a/tests/app/Module/OccupationReportModuleTest.php +++ b/tests/app/Module/OccupationReportModuleTest.php @@ -47,7 +47,6 @@ class OccupationReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -55,7 +54,6 @@ class OccupationReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -65,7 +63,6 @@ class OccupationReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/PedigreeReportModuleTest.php b/tests/app/Module/PedigreeReportModuleTest.php index 5b368ea0b2..7d205d26bb 100644 --- a/tests/app/Module/PedigreeReportModuleTest.php +++ b/tests/app/Module/PedigreeReportModuleTest.php @@ -47,7 +47,6 @@ class PedigreeReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -55,7 +54,6 @@ class PedigreeReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -65,7 +63,6 @@ class PedigreeReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText diff --git a/tests/app/Module/RelatedIndividualsReportModuleTest.php b/tests/app/Module/RelatedIndividualsReportModuleTest.php index e18894100e..6b99cace8e 100644 --- a/tests/app/Module/RelatedIndividualsReportModuleTest.php +++ b/tests/app/Module/RelatedIndividualsReportModuleTest.php @@ -47,7 +47,6 @@ class RelatedIndividualsReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportBaseCell * @covers \Fisharebest\Webtrees\Report\ReportBaseElement * @covers \Fisharebest\Webtrees\Report\ReportBaseFootnote - * @covers \Fisharebest\Webtrees\Report\ReportBaseHtml * @covers \Fisharebest\Webtrees\Report\ReportBaseImage * @covers \Fisharebest\Webtrees\Report\ReportBaseLine * @covers \Fisharebest\Webtrees\Report\ReportBaseText @@ -55,7 +54,6 @@ class RelatedIndividualsReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportExpressionLanguageProvider * @covers \Fisharebest\Webtrees\Report\ReportHtmlCell * @covers \Fisharebest\Webtrees\Report\ReportHtmlFootnote - * @covers \Fisharebest\Webtrees\Report\ReportHtmlHtml * @covers \Fisharebest\Webtrees\Report\ReportHtmlImage * @covers \Fisharebest\Webtrees\Report\ReportHtmlLine * @covers \Fisharebest\Webtrees\Report\ReportHtmlText @@ -65,7 +63,6 @@ class RelatedIndividualsReportModuleTest extends TestCase * @covers \Fisharebest\Webtrees\Report\ReportParserSetup * @covers \Fisharebest\Webtrees\Report\ReportPdfCell * @covers \Fisharebest\Webtrees\Report\ReportPdfFootnote - * @covers \Fisharebest\Webtrees\Report\ReportPdfHtml * @covers \Fisharebest\Webtrees\Report\ReportPdfImage * @covers \Fisharebest\Webtrees\Report\ReportPdfLine * @covers \Fisharebest\Webtrees\Report\ReportPdfText |
