@@ -32,7 +32,7 @@ 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
- protected $_rawModelDataInput = [];
35
+ protected $modelData = [];
36
36
37
37
{% if generatorConfiguration.collectErrors() %}
38
38
/** @var {{ viewHelper.getSimpleClassName(generatorConfiguration.getErrorRegistryClass()) }} Collect all validation errors */
@@ -70,7 +70,7 @@ class {{ class }} {% if schema.getInterfaces() %}implements {{ viewHelper.joinCl
70
70
}
71
71
{% endif %}
72
72
73
- $this->_rawModelDataInput = $modelData;
73
+ $this->modelData = $modelData;
74
74
75
75
{{ schemaHookResolver.resolveConstructorAfterValidationHook() }}
76
76
}
@@ -100,7 +100,7 @@ class {{ class }} {% if schema.getInterfaces() %}implements {{ viewHelper.joinCl
100
100
*/
101
101
public function getRawModelDataInput(): array
102
102
{
103
- return $this->_rawModelDataInput ;
103
+ return $this->modelData ;
104
104
}
105
105
106
106
{% foreach schema.getProperties() as property %}
@@ -154,7 +154,7 @@ class {{ class }} {% if schema.getInterfaces() %}implements {{ viewHelper.joinCl
154
154
{% endif %}
155
155
156
156
$this->{{ property.getAttribute() }} = $value;
157
- $this->_rawModelDataInput ['{{ property.getName() }}'] = ${{ property.getAttribute() }};
157
+ $this->modelData ['{{ property.getName() }}'] = ${{ property.getAttribute() }};
158
158
159
159
{{ schemaHookResolver.resolveSetterAfterValidationHook(property) }}
160
160
0 commit comments