From 66ded41ba0255d4477ace3d3f2ad31f0019c6c44 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/Calendar.php | 2 +- Models/Event.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Models/Calendar.php b/Models/Calendar.php index 70956de..940b110 100755 --- a/Models/Calendar.php +++ b/Models/Calendar.php @@ -72,7 +72,7 @@ class Calendar * @var array * @since 1.0.0 */ - private $events = []; + public $events = []; /** * Constructor. diff --git a/Models/Event.php b/Models/Event.php index ce219b0..d9d50cb 100755 --- a/Models/Event.php +++ b/Models/Event.php @@ -140,7 +140,7 @@ class Event * @var array * @since 1.0.0 */ - private array $people = []; + public array $people = []; /** * Tags. @@ -148,7 +148,7 @@ class Event * @var Tag[] * @since 1.0.0 */ - protected array $tags = []; + public array $tags = []; /** * Constructor.