mirror of
https://github.com/Karaka-Management/oms-Surveys.git
synced 2026-01-11 07:58:41 +00:00
Force public member variables or mapper changes
This commit is contained in:
parent
7ddde2c97c
commit
cf43cac5ac
|
|
@ -94,7 +94,7 @@ class SurveyTemplate
|
||||||
* @var null|SurveyTemplateL11n
|
* @var null|SurveyTemplateL11n
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected ?SurveyTemplateL11n $l11n = null;
|
public ?SurveyTemplateL11n $l11n = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Path for organizing.
|
* Path for organizing.
|
||||||
|
|
@ -110,7 +110,7 @@ class SurveyTemplate
|
||||||
* @var Tag[]
|
* @var Tag[]
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $tags = [];
|
public array $tags = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Elements.
|
* Elements.
|
||||||
|
|
@ -118,7 +118,7 @@ class SurveyTemplate
|
||||||
* @var SurveyTemplateElement[]
|
* @var SurveyTemplateElement[]
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
private array $elements = [];
|
public array $elements = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Media files
|
* Media files
|
||||||
|
|
@ -126,7 +126,7 @@ class SurveyTemplate
|
||||||
* @var Media[]
|
* @var Media[]
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected array $media = [];
|
public array $media = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@ class SurveyTemplateElement
|
||||||
* @var null|SurveyTemplateElementL11n
|
* @var null|SurveyTemplateElementL11n
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected ?SurveyTemplateElementL11n $l11n = null;
|
public ?SurveyTemplateElementL11n $l11n = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Labels.
|
* Labels.
|
||||||
|
|
@ -80,7 +80,7 @@ class SurveyTemplateElement
|
||||||
* @var SurveyTemplateLabelL11n[]
|
* @var SurveyTemplateLabelL11n[]
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
*/
|
*/
|
||||||
protected array $labels = [];
|
public array $labels = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Values.
|
* Values.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user