Force public member variables or mapper changes

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

View File

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

View File

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

View File

@ -106,7 +106,7 @@ class TaskAttributeValue implements \JsonSerializable
*
* @var null|BaseStringL11n
*/
private ?BaseStringL11n $l11n = null;
public ?BaseStringL11n $l11n = null;
/**
* Set l11n

View File

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