mirror of
https://github.com/Karaka-Management/oms-ProjectManagement.git
synced 2026-03-07 15:28:40 +00:00
Force public member variables or mapper changes
This commit is contained in:
parent
a901e2997c
commit
3a3dcd067b
|
|
@ -149,7 +149,7 @@ class Project
|
|||
* @var array<int, int|media>
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private array $media = [];
|
||||
public array $media = [];
|
||||
|
||||
/**
|
||||
* Created at.
|
||||
|
|
@ -173,7 +173,7 @@ class Project
|
|||
* @var Task[]
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private $tasks = [];
|
||||
public $tasks = [];
|
||||
|
||||
/**
|
||||
* Attributes.
|
||||
|
|
@ -181,7 +181,7 @@ class Project
|
|||
* @var int[]|ProjectAttribute[]
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private array $attributes = [];
|
||||
public array $attributes = [];
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
|
|
|
|||
|
|
@ -68,14 +68,14 @@ class ProjectAttributeType implements \JsonSerializable
|
|||
*
|
||||
* @var BaseStringL11n
|
||||
*/
|
||||
private string | BaseStringL11n $l11n;
|
||||
public string | BaseStringL11n $l11n;
|
||||
|
||||
/**
|
||||
* Possible default attribute values
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
private array $defaults = [];
|
||||
public array $defaults = [];
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@ class ProjectAttributeValue implements \JsonSerializable
|
|||
*
|
||||
* @var null|BaseStringL11n
|
||||
*/
|
||||
private ?BaseStringL11n $l11n = null;
|
||||
public ?BaseStringL11n $l11n = null;
|
||||
|
||||
/**
|
||||
* Set value
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user