mirror of
https://github.com/Karaka-Management/oms-Surveys.git
synced 2026-01-10 15:38:40 +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
|
||||
* @since 1.0.0
|
||||
*/
|
||||
protected ?SurveyTemplateL11n $l11n = null;
|
||||
public ?SurveyTemplateL11n $l11n = null;
|
||||
|
||||
/**
|
||||
* Path for organizing.
|
||||
|
|
@ -110,7 +110,7 @@ class SurveyTemplate
|
|||
* @var Tag[]
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private array $tags = [];
|
||||
public array $tags = [];
|
||||
|
||||
/**
|
||||
* Elements.
|
||||
|
|
@ -118,7 +118,7 @@ class SurveyTemplate
|
|||
* @var SurveyTemplateElement[]
|
||||
* @since 1.0.0
|
||||
*/
|
||||
private array $elements = [];
|
||||
public array $elements = [];
|
||||
|
||||
/**
|
||||
* Media files
|
||||
|
|
@ -126,7 +126,7 @@ class SurveyTemplate
|
|||
* @var Media[]
|
||||
* @since 1.0.0
|
||||
*/
|
||||
protected array $media = [];
|
||||
public array $media = [];
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ class SurveyTemplateElement
|
|||
* @var null|SurveyTemplateElementL11n
|
||||
* @since 1.0.0
|
||||
*/
|
||||
protected ?SurveyTemplateElementL11n $l11n = null;
|
||||
public ?SurveyTemplateElementL11n $l11n = null;
|
||||
|
||||
/**
|
||||
* Labels.
|
||||
|
|
@ -80,7 +80,7 @@ class SurveyTemplateElement
|
|||
* @var SurveyTemplateLabelL11n[]
|
||||
* @since 1.0.0
|
||||
*/
|
||||
protected array $labels = [];
|
||||
public array $labels = [];
|
||||
|
||||
/**
|
||||
* Values.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user