File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,11 +32,11 @@ class {{ class }} {% if schema.getInterfaces() %}implements {{ viewHelper.joinCl
32
32
{% if property.isInternal() %}private{% else %}protected{% endif %} ${{ property.getAttribute() }}{% if not viewHelper.isNull(property.getDefaultValue()) %} = {{ property.getDefaultValue() }}{% endif %};
33
33
{% endforeach %}
34
34
/** @var array */
35
- private $_rawModelDataInput = [];
35
+ protected $_rawModelDataInput = [];
36
36
37
37
{% if generatorConfiguration.collectErrors() %}
38
38
/** @var {{ viewHelper.getSimpleClassName(generatorConfiguration.getErrorRegistryClass()) }} Collect all validation errors */
39
- private $_errorRegistry;
39
+ protected $_errorRegistry;
40
40
{% endif %}
41
41
42
42
/**
@@ -76,7 +76,7 @@ class {{ class }} {% if schema.getInterfaces() %}implements {{ viewHelper.joinCl
76
76
}
77
77
78
78
{% if schema.getBaseValidators() %}
79
- private function executeBaseValidators(array &$modelData): void
79
+ protected function executeBaseValidators(array &$modelData): void
80
80
{
81
81
$value = &$modelData;
82
82
You can’t perform that action at this time.
0 commit comments