From 4a90ad94a0cfb9e2c15a90c0637a603773c3064a Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 4 Oct 2023 15:52:16 +0000 Subject: [PATCH] Force public member variables or mapper changes --- Models/KanbanBoard.php | 4 ++-- Models/KanbanCard.php | 6 +++--- Models/KanbanCardComment.php | 2 +- Models/KanbanColumn.php | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Models/KanbanBoard.php b/Models/KanbanBoard.php index 7010289..2ca6117 100755 --- a/Models/KanbanBoard.php +++ b/Models/KanbanBoard.php @@ -99,7 +99,7 @@ class KanbanBoard implements \JsonSerializable * @var Tag[] * @since 1.0.0 */ - private array $tags = []; + public array $tags = []; /** * Creator. @@ -123,7 +123,7 @@ class KanbanBoard implements \JsonSerializable * @var \Modules\Kanban\Models\KanbanColumn[] * @since 1.0.0 */ - private array $columns = []; + public array $columns = []; /** * Constructor. diff --git a/Models/KanbanCard.php b/Models/KanbanCard.php index 25240af..8015af9 100755 --- a/Models/KanbanCard.php +++ b/Models/KanbanCard.php @@ -101,7 +101,7 @@ class KanbanCard implements \JsonSerializable * @var Tag[] * @since 1.0.0 */ - private array $tags = []; + public array $tags = []; /** * Column this card belongs to. @@ -151,7 +151,7 @@ class KanbanCard implements \JsonSerializable * @var \Modules\Kanban\Models\KanbanCardComment[] * @since 1.0.0 */ - private array $comments = []; + public array $comments = []; /** * Media @@ -159,7 +159,7 @@ class KanbanCard implements \JsonSerializable * @var Media[] * @since 1.0.0 */ - private array $media = []; + public array $media = []; /** * Constructor. diff --git a/Models/KanbanCardComment.php b/Models/KanbanCardComment.php index 3238d2f..648e708 100755 --- a/Models/KanbanCardComment.php +++ b/Models/KanbanCardComment.php @@ -82,7 +82,7 @@ class KanbanCardComment implements \JsonSerializable * @var \Modules\Media\Models\Media[] * @since 1.0.0 */ - private array $media = []; + public array $media = []; /** * Constructor. diff --git a/Models/KanbanColumn.php b/Models/KanbanColumn.php index 8a49182..6bdf2f3 100755 --- a/Models/KanbanColumn.php +++ b/Models/KanbanColumn.php @@ -62,7 +62,7 @@ class KanbanColumn implements \JsonSerializable * @var array * @since 1.0.0 */ - private array $cards = []; + public array $cards = []; /** * Get id.