@@ -123,37 +123,44 @@ public function getObject(): ?object;
123
123
*
124
124
* @param object|null $object The currently validated object
125
125
* @param string $propertyPath The property path to the current value
126
+ *
127
+ * @return void
126
128
*/
127
- public function setNode (mixed $ value , ?object $ object , MetadataInterface $ metadata = null , string $ propertyPath ): void ;
129
+ public function setNode (mixed $ value , ?object $ object , MetadataInterface $ metadata = null , string $ propertyPath );
128
130
129
131
/**
130
132
* Warning: Should not be called by user code, to be used by the validator engine only.
131
133
*
132
134
* @param string|null $group The validated group
135
+ *
136
+ * @return void
133
137
*/
134
- public function setGroup (?string $ group ): void ;
138
+ public function setGroup (?string $ group );
135
139
136
140
/**
137
141
* Warning: Should not be called by user code, to be used by the validator engine only.
142
+ *
143
+ * @return void
138
144
*/
139
- public function setConstraint (Constraint $ constraint ): void ;
145
+ public function setConstraint (Constraint $ constraint );
140
146
141
147
/**
142
148
* Warning: Should not be called by user code, to be used by the validator engine only.
143
149
*
144
150
* @param string $cacheKey The hash of the object
145
151
* @param string $groupHash The group's name or hash, if it is group
146
152
* sequence
153
+ *
154
+ * @return void
147
155
*/
148
- public function markGroupAsValidated (string $ cacheKey , string $ groupHash ): void ;
156
+ public function markGroupAsValidated (string $ cacheKey , string $ groupHash );
149
157
150
158
/**
151
159
* Warning: Should not be called by user code, to be used by the validator engine only.
152
160
*
153
161
* @param string $cacheKey The hash of the object
154
162
* @param string $groupHash The group's name or hash, if it is group
155
163
* sequence
156
- *
157
164
*/
158
165
public function isGroupValidated (string $ cacheKey , string $ groupHash ): bool ;
159
166
@@ -162,15 +169,16 @@ public function isGroupValidated(string $cacheKey, string $groupHash): bool;
162
169
*
163
170
* @param string $cacheKey The hash of the object
164
171
* @param string $constraintHash The hash of the constraint
172
+ *
173
+ * @return void
165
174
*/
166
- public function markConstraintAsValidated (string $ cacheKey , string $ constraintHash ): void ;
175
+ public function markConstraintAsValidated (string $ cacheKey , string $ constraintHash );
167
176
168
177
/**
169
178
* Warning: Should not be called by user code, to be used by the validator engine only.
170
179
*
171
180
* @param string $cacheKey The hash of the object
172
181
* @param string $constraintHash The hash of the constraint
173
- *
174
182
*/
175
183
public function isConstraintValidated (string $ cacheKey , string $ constraintHash ): bool ;
176
184
@@ -188,7 +196,6 @@ public function markObjectAsInitialized(string $cacheKey): void;
188
196
*
189
197
* @param string $cacheKey The hash of the object
190
198
*
191
- *
192
199
* @see ObjectInitializerInterface
193
200
*/
194
201
public function isObjectInitialized (string $ cacheKey ): bool ;
0 commit comments