From a1f57e622257e8d96f3320ded32fbbc977c68300 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 4 Oct 2023 15:52:15 +0000 Subject: [PATCH] Force public member variables or mapper changes --- Models/AccountAbstract.php | 2 +- Models/BatchPosting.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Models/AccountAbstract.php b/Models/AccountAbstract.php index 88eadf3..2ffd6a2 100755 --- a/Models/AccountAbstract.php +++ b/Models/AccountAbstract.php @@ -69,7 +69,7 @@ class AccountAbstract * @var EntryInterface[] * @since 1.0.0 */ - protected array $entries = []; + public array $entries = []; /** * Get account id. diff --git a/Models/BatchPosting.php b/Models/BatchPosting.php index e6d13ca..9d527e5 100755 --- a/Models/BatchPosting.php +++ b/Models/BatchPosting.php @@ -62,7 +62,7 @@ class BatchPosting implements \Countable * @var PostingInterface[] * @since 1.0.0 */ - private $postings = []; + public $postings = []; /** * Constructor.