mirror of
https://github.com/Karaka-Management/oms-Tasks.git
synced 2026-01-10 15:18:40 +00:00
Force public member variables or mapper changes
This commit is contained in:
parent
4a01547df7
commit
cb311125c7
|
|
@ -130,7 +130,7 @@ class Task implements \JsonSerializable
|
|||
* @var TaskAttribute[]
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private array $attributes = [];
|
||||
public array $attributes = [];
|
||||
|
||||
/**
|
||||
* Task can be closed by user.
|
||||
|
|
@ -182,7 +182,7 @@ class Task implements \JsonSerializable
|
|||
* @var TaskElement[]
|
||||
* @since 1.0.0
|
||||
*/
|
||||
protected array $taskElements = [];
|
||||
public array $taskElements = [];
|
||||
|
||||
/**
|
||||
* Tags.
|
||||
|
|
@ -190,7 +190,7 @@ class Task implements \JsonSerializable
|
|||
* @var Tag[]
|
||||
* @since 1.0.0
|
||||
*/
|
||||
protected array $tags = [];
|
||||
public array $tags = [];
|
||||
|
||||
/**
|
||||
* Schedule
|
||||
|
|
@ -214,7 +214,7 @@ class Task implements \JsonSerializable
|
|||
* @var array
|
||||
* @since 1.0.0
|
||||
*/
|
||||
protected array $media = [];
|
||||
public array $media = [];
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
|
|
|
|||
|
|
@ -76,14 +76,14 @@ class TaskAttributeType implements \JsonSerializable
|
|||
*
|
||||
* @var BaseStringL11n
|
||||
*/
|
||||
private string | BaseStringL11n $l11n = '';
|
||||
public string | BaseStringL11n $l11n = '';
|
||||
|
||||
/**
|
||||
* Possible default attribute values
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
private array $defaults = [];
|
||||
public array $defaults = [];
|
||||
|
||||
/**
|
||||
* Default attribute value
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@ class TaskAttributeValue implements \JsonSerializable
|
|||
*
|
||||
* @var null|BaseStringL11n
|
||||
*/
|
||||
private ?BaseStringL11n $l11n = null;
|
||||
public ?BaseStringL11n $l11n = null;
|
||||
|
||||
/**
|
||||
* Set l11n
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ class TaskElement implements \JsonSerializable
|
|||
* @var Media[]
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private array $media = [];
|
||||
public array $media = [];
|
||||
|
||||
/**
|
||||
* Accounts who received this task element.
|
||||
|
|
@ -116,7 +116,7 @@ class TaskElement implements \JsonSerializable
|
|||
* @var AccountRelation[]
|
||||
* @since 1.0.0
|
||||
*/
|
||||
protected array $accRelation = [];
|
||||
public array $accRelation = [];
|
||||
|
||||
/**
|
||||
* Groups who received this task element.
|
||||
|
|
@ -124,7 +124,7 @@ class TaskElement implements \JsonSerializable
|
|||
* @var GroupRelation[]
|
||||
* @since 1.0.0
|
||||
*/
|
||||
protected array $grpRelation = [];
|
||||
public array $grpRelation = [];
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user