Force public member variables or mapper changes

This commit is contained in:
Dennis Eichhorn 2023-10-04 15:52:15 +00:00
parent 517fb9d601
commit 66ded41ba0
2 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ class Calendar
* @var array<int, \Modules\Calendar\Models\Event> * @var array<int, \Modules\Calendar\Models\Event>
* @since 1.0.0 * @since 1.0.0
*/ */
private $events = []; public $events = [];
/** /**
* Constructor. * Constructor.

View File

@ -140,7 +140,7 @@ class Event
* @var array * @var array
* @since 1.0.0 * @since 1.0.0
*/ */
private array $people = []; public array $people = [];
/** /**
* Tags. * Tags.
@ -148,7 +148,7 @@ class Event
* @var Tag[] * @var Tag[]
* @since 1.0.0 * @since 1.0.0
*/ */
protected array $tags = []; public array $tags = [];
/** /**
* Constructor. * Constructor.