@@ -123,29 +123,37 @@ 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.
@@ -162,8 +170,10 @@ public function isGroupValidated(string $cacheKey, string $groupHash): bool;
162
170
*
163
171
* @param string $cacheKey The hash of the object
164
172
* @param string $constraintHash The hash of the constraint
173
+ *
174
+ * @return void
165
175
*/
166
- public function markConstraintAsValidated (string $ cacheKey , string $ constraintHash ): void ;
176
+ public function markConstraintAsValidated (string $ cacheKey , string $ constraintHash );
167
177
168
178
/**
169
179
* Warning: Should not be called by user code, to be used by the validator engine only.
0 commit comments