From 4a66dbd32903127a3188657ffd72b7bda5ba9e48 Mon Sep 17 00:00:00 2001 From: Philipp Lang Date: Sun, 30 Oct 2022 16:27:51 +0100 Subject: [PATCH] Fixed type of type in PDF data --- app/Contribution/DvData.php | 2 +- app/Contribution/SolingenData.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Contribution/DvData.php b/app/Contribution/DvData.php index 8a70812c..c38f1298 100644 --- a/app/Contribution/DvData.php +++ b/app/Contribution/DvData.php @@ -20,7 +20,7 @@ class DvData extends Data implements PdfRepository public ?Country $country, public array $members, public ?string $filename = '', - public $type = 'F', + public string $type = 'F', ) { } diff --git a/app/Contribution/SolingenData.php b/app/Contribution/SolingenData.php index 41b5266d..e759f66b 100644 --- a/app/Contribution/SolingenData.php +++ b/app/Contribution/SolingenData.php @@ -19,7 +19,7 @@ class SolingenData extends Data implements PdfRepository public string $dateUntil, public array $members, public ?string $filename = '', - public $type = 'F', + public string $type = 'F', ) { }