mirror of
https://github.com/Karaka-Management/oms-Marketing.git
synced 2026-02-17 18:38:41 +00:00
Force public member variables or mapper changes
This commit is contained in:
parent
8b7a4a3497
commit
b492298cee
|
|
@ -118,7 +118,7 @@ class Promotion
|
||||||
* @var Task[]
|
* @var Task[]
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $tasks = [];
|
public array $tasks = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Media.
|
* Media.
|
||||||
|
|
@ -126,7 +126,7 @@ class Promotion
|
||||||
* @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).
|
||||||
|
|
@ -166,7 +166,7 @@ class Promotion
|
||||||
* @var AccountRelation[]
|
* @var AccountRelation[]
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $accountRelations = [];
|
public array $accountRelations = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Attributes.
|
* Attributes.
|
||||||
|
|
@ -174,7 +174,7 @@ class Promotion
|
||||||
* @var int[]|PromotionAttribute[]
|
* @var int[]|PromotionAttribute[]
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $attributes = [];
|
public array $attributes = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
|
|
|
||||||
|
|
@ -68,14 +68,14 @@ class PromotionAttributeType 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.
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,7 @@ class PromotionAttributeValue implements \JsonSerializable
|
||||||
*
|
*
|
||||||
* @var null|BaseStringL11n
|
* @var null|BaseStringL11n
|
||||||
*/
|
*/
|
||||||
private ?BaseStringL11n $l11n = null;
|
public ?BaseStringL11n $l11n = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set value
|
* Set value
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user