Force public member variables or mapper changes

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

View File

@ -127,7 +127,7 @@ class Event
* @var Task[] * @var Task[]
* @since 1.0.0 * @since 1.0.0
*/ */
private array $tasks = []; public array $tasks = [];
/** /**
* Media. * Media.
@ -135,7 +135,7 @@ class Event
* @var \Modules\Media\Models\Media[] * @var \Modules\Media\Models\Media[]
* @since 1.0.0 * @since 1.0.0
*/ */
private array $media = []; public array $media = [];
/** /**
* Progress (0-100). * Progress (0-100).
@ -175,7 +175,7 @@ class Event
* @var AccountRelation[] * @var AccountRelation[]
* @since 1.0.0 * @since 1.0.0
*/ */
private array $accountRelations = []; public array $accountRelations = [];
/** /**
* Attributes. * Attributes.
@ -183,7 +183,7 @@ class Event
* @var int[]|EventAttribute[] * @var int[]|EventAttribute[]
* @since 1.0.0 * @since 1.0.0
*/ */
private array $attributes = []; public array $attributes = [];
/** /**
* Constructor. * Constructor.

View File

@ -68,14 +68,14 @@ class EventAttributeType 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 EventAttributeValue implements \JsonSerializable
* *
* @var null|BaseStringL11n * @var null|BaseStringL11n
*/ */
private ?BaseStringL11n $l11n = null; public ?BaseStringL11n $l11n = null;
/** /**
* Set value * Set value