summaryrefslogtreecommitdiff
path: root/app/Report
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2025-01-02 17:39:59 +0000
committerGreg Roach <greg@subaqua.co.uk>2025-01-04 18:01:44 +0000
commit1f50a43c63909c75ef86071e6ff05d5b0eb35632 (patch)
tree28fd76dba94dd259b97c6c4936f907029aba4a4e /app/Report
parentbc5848527e0266b72d3240945655cbc11706bc27 (diff)
downloadwebtrees-1f50a43c63909c75ef86071e6ff05d5b0eb35632.tar.gz
webtrees-1f50a43c63909c75ef86071e6ff05d5b0eb35632.tar.bz2
webtrees-1f50a43c63909c75ef86071e6ff05d5b0eb35632.zip
Remove unnecessary PHPDOC
Diffstat (limited to 'app/Report')
-rw-r--r--app/Report/HtmlRenderer.php3
-rw-r--r--app/Report/PdfRenderer.php3
-rw-r--r--app/Report/ReportBaseCell.php3
-rw-r--r--app/Report/ReportBaseElement.php3
-rw-r--r--app/Report/ReportBaseFootnote.php3
-rw-r--r--app/Report/ReportBaseImage.php3
-rw-r--r--app/Report/ReportBaseLine.php3
-rw-r--r--app/Report/ReportBaseText.php3
-rw-r--r--app/Report/ReportBaseTextbox.php3
-rw-r--r--app/Report/ReportHtmlCell.php3
-rw-r--r--app/Report/ReportHtmlFootnote.php3
-rw-r--r--app/Report/ReportHtmlImage.php3
-rw-r--r--app/Report/ReportHtmlLine.php3
-rw-r--r--app/Report/ReportHtmlText.php3
-rw-r--r--app/Report/ReportHtmlTextbox.php3
-rw-r--r--app/Report/ReportParserBase.php3
-rw-r--r--app/Report/ReportPdfCell.php3
-rw-r--r--app/Report/ReportPdfFootnote.php3
-rw-r--r--app/Report/ReportPdfImage.php3
-rw-r--r--app/Report/ReportPdfLine.php3
-rw-r--r--app/Report/ReportPdfText.php3
-rw-r--r--app/Report/ReportPdfTextBox.php3
-rw-r--r--app/Report/TcpdfWrapper.php3
23 files changed, 0 insertions, 69 deletions
diff --git a/app/Report/HtmlRenderer.php b/app/Report/HtmlRenderer.php
index 12b636697d..627210ca76 100644
--- a/app/Report/HtmlRenderer.php
+++ b/app/Report/HtmlRenderer.php
@@ -35,9 +35,6 @@ use function strrpos;
use function substr;
use function substr_count;
-/**
- * Class HtmlRenderer
- */
class HtmlRenderer extends AbstractRenderer
{
// Cell padding
diff --git a/app/Report/PdfRenderer.php b/app/Report/PdfRenderer.php
index b9ab6fa1e3..fafdae9692 100644
--- a/app/Report/PdfRenderer.php
+++ b/app/Report/PdfRenderer.php
@@ -24,9 +24,6 @@ use Fisharebest\Webtrees\Webtrees;
use function count;
-/**
- * Class PdfRenderer
- */
class PdfRenderer extends AbstractRenderer
{
/**
diff --git a/app/Report/ReportBaseCell.php b/app/Report/ReportBaseCell.php
index 82c49cb46c..6bb74bc7dc 100644
--- a/app/Report/ReportBaseCell.php
+++ b/app/Report/ReportBaseCell.php
@@ -19,9 +19,6 @@ declare(strict_types=1);
namespace Fisharebest\Webtrees\Report;
-/**
- * Class ReportBaseCell
- */
class ReportBaseCell extends ReportBaseElement
{
// Center or align the text. Possible values are:
diff --git a/app/Report/ReportBaseElement.php b/app/Report/ReportBaseElement.php
index 0f9f331eef..c9f01b68f1 100644
--- a/app/Report/ReportBaseElement.php
+++ b/app/Report/ReportBaseElement.php
@@ -22,9 +22,6 @@ namespace Fisharebest\Webtrees\Report;
use function strip_tags;
use function trim;
-/**
- * Class ReportBaseElement
- */
class ReportBaseElement
{
// Special value for X or Y position, to indicate the current position.
diff --git a/app/Report/ReportBaseFootnote.php b/app/Report/ReportBaseFootnote.php
index dc7637b0bc..e9fc42961e 100644
--- a/app/Report/ReportBaseFootnote.php
+++ b/app/Report/ReportBaseFootnote.php
@@ -21,9 +21,6 @@ namespace Fisharebest\Webtrees\Report;
use function str_contains;
-/**
- * Class ReportBaseFootnote
- */
class ReportBaseFootnote extends ReportBaseElement
{
// The name of the style for this element
diff --git a/app/Report/ReportBaseImage.php b/app/Report/ReportBaseImage.php
index eb0a50f183..e2f67663b3 100644
--- a/app/Report/ReportBaseImage.php
+++ b/app/Report/ReportBaseImage.php
@@ -19,9 +19,6 @@ declare(strict_types=1);
namespace Fisharebest\Webtrees\Report;
-/**
- * Class ReportBaseImage
- */
class ReportBaseImage extends ReportBaseElement
{
// Filename of the image
diff --git a/app/Report/ReportBaseLine.php b/app/Report/ReportBaseLine.php
index e2253f50ca..4817e8f05a 100644
--- a/app/Report/ReportBaseLine.php
+++ b/app/Report/ReportBaseLine.php
@@ -21,9 +21,6 @@ namespace Fisharebest\Webtrees\Report;
use function abs;
-/**
- * Class ReportBaseLine
- */
class ReportBaseLine extends ReportBaseElement
{
// Start horizontal position, current position (default)
diff --git a/app/Report/ReportBaseText.php b/app/Report/ReportBaseText.php
index d7f5d9fde0..a99cb69fe3 100644
--- a/app/Report/ReportBaseText.php
+++ b/app/Report/ReportBaseText.php
@@ -21,9 +21,6 @@ namespace Fisharebest\Webtrees\Report;
use function str_contains;
-/**
- * Class ReportBaseText
- */
class ReportBaseText extends ReportBaseElement
{
// Text color in HTML code
diff --git a/app/Report/ReportBaseTextbox.php b/app/Report/ReportBaseTextbox.php
index a43478b26d..2a82d3f8e3 100644
--- a/app/Report/ReportBaseTextbox.php
+++ b/app/Report/ReportBaseTextbox.php
@@ -19,9 +19,6 @@ declare(strict_types=1);
namespace Fisharebest\Webtrees\Report;
-/**
- * Class ReportBaseTextbox
- */
class ReportBaseTextbox extends ReportBaseElement
{
/**
diff --git a/app/Report/ReportHtmlCell.php b/app/Report/ReportHtmlCell.php
index e8cbf1a9ce..b3eeb50d9c 100644
--- a/app/Report/ReportHtmlCell.php
+++ b/app/Report/ReportHtmlCell.php
@@ -22,9 +22,6 @@ namespace Fisharebest\Webtrees\Report;
use function str_contains;
use function str_replace;
-/**
- * Class ReportHtmlCell
- */
class ReportHtmlCell extends ReportBaseCell
{
/**
diff --git a/app/Report/ReportHtmlFootnote.php b/app/Report/ReportHtmlFootnote.php
index 6238a0782c..791020e54c 100644
--- a/app/Report/ReportHtmlFootnote.php
+++ b/app/Report/ReportHtmlFootnote.php
@@ -24,9 +24,6 @@ use function explode;
use function str_replace;
use function substr_count;
-/**
- * Class ReportHtmlFootnote
- */
class ReportHtmlFootnote extends ReportBaseFootnote
{
/**
diff --git a/app/Report/ReportHtmlImage.php b/app/Report/ReportHtmlImage.php
index 513a7de431..72eefd41ba 100644
--- a/app/Report/ReportHtmlImage.php
+++ b/app/Report/ReportHtmlImage.php
@@ -19,9 +19,6 @@ declare(strict_types=1);
namespace Fisharebest\Webtrees\Report;
-/**
- * Class ReportHtmlImage
- */
class ReportHtmlImage extends ReportBaseImage
{
/**
diff --git a/app/Report/ReportHtmlLine.php b/app/Report/ReportHtmlLine.php
index fa8ab4fc60..20d4d8f227 100644
--- a/app/Report/ReportHtmlLine.php
+++ b/app/Report/ReportHtmlLine.php
@@ -19,9 +19,6 @@ declare(strict_types=1);
namespace Fisharebest\Webtrees\Report;
-/**
- * Class ReportHtmlLine
- */
class ReportHtmlLine extends ReportBaseLine
{
/**
diff --git a/app/Report/ReportHtmlText.php b/app/Report/ReportHtmlText.php
index 3f3824405d..6a967c0b25 100644
--- a/app/Report/ReportHtmlText.php
+++ b/app/Report/ReportHtmlText.php
@@ -24,9 +24,6 @@ use function explode;
use function str_replace;
use function substr_count;
-/**
- * Class ReportHtmlText
- */
class ReportHtmlText extends ReportBaseText
{
/**
diff --git a/app/Report/ReportHtmlTextbox.php b/app/Report/ReportHtmlTextbox.php
index 21c0c6a397..1a6ff6c036 100644
--- a/app/Report/ReportHtmlTextbox.php
+++ b/app/Report/ReportHtmlTextbox.php
@@ -26,9 +26,6 @@ use function ksort;
use function str_replace;
use function trim;
-/**
- * Class ReportHtmlTextbox
- */
class ReportHtmlTextbox extends ReportBaseTextbox
{
/**
diff --git a/app/Report/ReportParserBase.php b/app/Report/ReportParserBase.php
index d911acb5dd..ff8ea1fd33 100644
--- a/app/Report/ReportParserBase.php
+++ b/app/Report/ReportParserBase.php
@@ -40,9 +40,6 @@ use function xml_set_element_handler;
use const XML_OPTION_CASE_FOLDING;
-/**
- * Class ReportParserBase
- */
class ReportParserBase
{
// The XML parser
diff --git a/app/Report/ReportPdfCell.php b/app/Report/ReportPdfCell.php
index 35667a7aca..a14465d2dd 100644
--- a/app/Report/ReportPdfCell.php
+++ b/app/Report/ReportPdfCell.php
@@ -24,9 +24,6 @@ use function is_array;
use function preg_match;
use function str_replace;
-/**
- * Class ReportPdfCell
- */
class ReportPdfCell extends ReportBaseCell
{
/**
diff --git a/app/Report/ReportPdfFootnote.php b/app/Report/ReportPdfFootnote.php
index 09c4c97797..fa9ccbec91 100644
--- a/app/Report/ReportPdfFootnote.php
+++ b/app/Report/ReportPdfFootnote.php
@@ -25,9 +25,6 @@ use function explode;
use function str_replace;
use function substr_count;
-/**
- * Class ReportPdfFootnote
- */
class ReportPdfFootnote extends ReportBaseFootnote
{
/**
diff --git a/app/Report/ReportPdfImage.php b/app/Report/ReportPdfImage.php
index 3bf6ded97d..e5272a1746 100644
--- a/app/Report/ReportPdfImage.php
+++ b/app/Report/ReportPdfImage.php
@@ -19,9 +19,6 @@ declare(strict_types=1);
namespace Fisharebest\Webtrees\Report;
-/**
- * Class ReportPdfImage
- */
class ReportPdfImage extends ReportBaseImage
{
/**
diff --git a/app/Report/ReportPdfLine.php b/app/Report/ReportPdfLine.php
index c970eb2252..cbdedcae6a 100644
--- a/app/Report/ReportPdfLine.php
+++ b/app/Report/ReportPdfLine.php
@@ -19,9 +19,6 @@ declare(strict_types=1);
namespace Fisharebest\Webtrees\Report;
-/**
- * Class ReportPdfLine
- */
class ReportPdfLine extends ReportBaseLine
{
/**
diff --git a/app/Report/ReportPdfText.php b/app/Report/ReportPdfText.php
index 1aa28c7c51..23e943f7e5 100644
--- a/app/Report/ReportPdfText.php
+++ b/app/Report/ReportPdfText.php
@@ -26,9 +26,6 @@ use function preg_match;
use function str_replace;
use function substr_count;
-/**
- * Class ReportPdfText
- */
class ReportPdfText extends ReportBaseText
{
/**
diff --git a/app/Report/ReportPdfTextBox.php b/app/Report/ReportPdfTextBox.php
index 4813094078..0cd6ec4ced 100644
--- a/app/Report/ReportPdfTextBox.php
+++ b/app/Report/ReportPdfTextBox.php
@@ -28,9 +28,6 @@ use function preg_match;
use function str_replace;
use function trim;
-/**
- * Class ReportPdfTextBox
- */
class ReportPdfTextBox extends ReportBaseTextbox
{
/**
diff --git a/app/Report/TcpdfWrapper.php b/app/Report/TcpdfWrapper.php
index 46a81bd8be..14f49dec87 100644
--- a/app/Report/TcpdfWrapper.php
+++ b/app/Report/TcpdfWrapper.php
@@ -21,9 +21,6 @@ namespace Fisharebest\Webtrees\Report;
use TCPDF;
-/**
- * Class TcpdfWrapper
- */
class TcpdfWrapper extends TCPDF
{
/**