Force public member variables or mapper changes

This commit is contained in:
Dennis Eichhorn 2023-10-04 15:52:16 +00:00
parent 1634bbce37
commit 4a90ad94a0
4 changed files with 7 additions and 7 deletions

View File

@ -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.

View File

@ -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.

View File

@ -82,7 +82,7 @@ class KanbanCardComment implements \JsonSerializable
* @var \Modules\Media\Models\Media[]
* @since 1.0.0
*/
private array $media = [];
public array $media = [];
/**
* Constructor.

View File

@ -62,7 +62,7 @@ class KanbanColumn implements \JsonSerializable
* @var array
* @since 1.0.0
*/
private array $cards = [];
public array $cards = [];
/**
* Get id.