mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-02-18 13:18:41 +00:00
Force public member variables or mapper changes
This commit is contained in:
parent
1634bbce37
commit
4a90ad94a0
|
|
@ -99,7 +99,7 @@ class KanbanBoard implements \JsonSerializable
|
||||||
* @var Tag[]
|
* @var Tag[]
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $tags = [];
|
public array $tags = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creator.
|
* Creator.
|
||||||
|
|
@ -123,7 +123,7 @@ class KanbanBoard implements \JsonSerializable
|
||||||
* @var \Modules\Kanban\Models\KanbanColumn[]
|
* @var \Modules\Kanban\Models\KanbanColumn[]
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $columns = [];
|
public array $columns = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
|
|
|
||||||
|
|
@ -101,7 +101,7 @@ class KanbanCard implements \JsonSerializable
|
||||||
* @var Tag[]
|
* @var Tag[]
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $tags = [];
|
public array $tags = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Column this card belongs to.
|
* Column this card belongs to.
|
||||||
|
|
@ -151,7 +151,7 @@ class KanbanCard implements \JsonSerializable
|
||||||
* @var \Modules\Kanban\Models\KanbanCardComment[]
|
* @var \Modules\Kanban\Models\KanbanCardComment[]
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $comments = [];
|
public array $comments = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Media
|
* Media
|
||||||
|
|
@ -159,7 +159,7 @@ class KanbanCard implements \JsonSerializable
|
||||||
* @var Media[]
|
* @var Media[]
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $media = [];
|
public array $media = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
|
|
|
||||||
|
|
@ -82,7 +82,7 @@ class KanbanCardComment implements \JsonSerializable
|
||||||
* @var \Modules\Media\Models\Media[]
|
* @var \Modules\Media\Models\Media[]
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $media = [];
|
public array $media = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,7 @@ class KanbanColumn implements \JsonSerializable
|
||||||
* @var array
|
* @var array
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $cards = [];
|
public array $cards = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get id.
|
* Get id.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user