Force public member variables or mapper changes

This commit is contained in:
Dennis Eichhorn 2023-10-04 15:52:16 +00:00
parent a901e2997c
commit 3a3dcd067b
3 changed files with 6 additions and 6 deletions

View File

@ -149,7 +149,7 @@ class Project
* @var array<int, int|media> * @var array<int, int|media>
* @since 1.0.0 * @since 1.0.0
*/ */
private array $media = []; public array $media = [];
/** /**
* Created at. * Created at.
@ -173,7 +173,7 @@ class Project
* @var Task[] * @var Task[]
* @since 1.0.0 * @since 1.0.0
*/ */
private $tasks = []; public $tasks = [];
/** /**
* Attributes. * Attributes.
@ -181,7 +181,7 @@ class Project
* @var int[]|ProjectAttribute[] * @var int[]|ProjectAttribute[]
* @since 1.0.0 * @since 1.0.0
*/ */
private array $attributes = []; public array $attributes = [];
/** /**
* Constructor. * Constructor.

View File

@ -68,14 +68,14 @@ class ProjectAttributeType implements \JsonSerializable
* *
* @var BaseStringL11n * @var BaseStringL11n
*/ */
private string | BaseStringL11n $l11n; public string | BaseStringL11n $l11n;
/** /**
* Possible default attribute values * Possible default attribute values
* *
* @var array * @var array
*/ */
private array $defaults = []; public array $defaults = [];
/** /**
* Constructor. * Constructor.

View File

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