@@ -126,8 +126,10 @@ public function getObject(): ?object;
126
126
*
127
127
* @internal Used by the validator engine. Should not be called by user
128
128
* code.
129
+ *
130
+ * @return void
129
131
*/
130
- public function setNode (mixed $ value , ?object $ object , MetadataInterface $ metadata = null , string $ propertyPath ): void ;
132
+ public function setNode (mixed $ value , ?object $ object , MetadataInterface $ metadata = null , string $ propertyPath );
131
133
132
134
/**
133
135
* Sets the currently validated group.
@@ -136,16 +138,20 @@ public function setNode(mixed $value, ?object $object, MetadataInterface $metada
136
138
*
137
139
* @internal Used by the validator engine. Should not be called by user
138
140
* code.
141
+ *
142
+ * @return void
139
143
*/
140
- public function setGroup (?string $ group ): void ;
144
+ public function setGroup (?string $ group );
141
145
142
146
/**
143
147
* Sets the currently validated constraint.
144
148
*
145
149
* @internal Used by the validator engine. Should not be called by user
146
150
* code.
151
+ *
152
+ * @return void
147
153
*/
148
- public function setConstraint (Constraint $ constraint ): void ;
154
+ public function setConstraint (Constraint $ constraint );
149
155
150
156
/**
151
157
* Marks an object as validated in a specific validation group.
@@ -156,8 +162,10 @@ public function setConstraint(Constraint $constraint): void;
156
162
*
157
163
* @internal Used by the validator engine. Should not be called by user
158
164
* code.
165
+ *
166
+ * @return void
159
167
*/
160
- public function markGroupAsValidated (string $ cacheKey , string $ groupHash ): void ;
168
+ public function markGroupAsValidated (string $ cacheKey , string $ groupHash );
161
169
162
170
/**
163
171
* Returns whether an object was validated in a specific validation group.
@@ -178,8 +186,10 @@ public function isGroupValidated(string $cacheKey, string $groupHash): bool;
178
186
*
179
187
* @internal Used by the validator engine. Should not be called by user
180
188
* code.
189
+ *
190
+ * @return void
181
191
*/
182
- public function markConstraintAsValidated (string $ cacheKey , string $ constraintHash ): void ;
192
+ public function markConstraintAsValidated (string $ cacheKey , string $ constraintHash );
183
193
184
194
/**
185
195
* Returns whether a constraint was validated for an object.
0 commit comments