From 5d496da2174b418c0c414f921f57fdc150828426 Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Thu, 19 Oct 2023 21:35:08 +0200 Subject: [PATCH] Added missing file --- src/QSLManager/QSO.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/QSLManager/QSO.php b/src/QSLManager/QSO.php index 2410bcc7..831bea73 100644 --- a/src/QSLManager/QSO.php +++ b/src/QSLManager/QSO.php @@ -753,22 +753,22 @@ class QSO public function getDXCC(): string { - return $this->dxcc; + return '' . $this->dxcc . ''; } public function getCqzone(): string { - return $this->cqzone; + return '' . $this->cqzone . ''; } public function getState(): string { - return $this->state; + return '' . $this->state . ''; } public function getIOTA(): string { - return $this->iota; + return '' . $this->iota . ''; } public function toArray(): array @@ -777,7 +777,7 @@ class QSO 'qsoID' => $this->qsoID, 'qsoDateTime' => $this->qsoDateTime, 'de' => $this->de, - 'dx' => $this->dx, + 'dx' => $this->getDx(), 'mode' => $this->getFormattedMode(), 'rstS' => $this->rstS, 'rstR' => $this->rstR,