We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2794398 + 187a580 commit df890f9Copy full SHA for df890f9
Field/ChoiceFormField.php
@@ -283,6 +283,8 @@ public function availableOptionValues(): array
283
* Disables the internal validation of the field.
284
*
285
* @internal
286
+ *
287
+ * @return $this
288
*/
289
public function disableValidation(): static
290
{
Form.php
@@ -330,8 +330,10 @@ public function offsetUnset(mixed $name): void
330
331
/**
332
* Disables validation.
333
334
335
- public function disableValidation(): self
336
+ public function disableValidation(): static
337
338
foreach ($this->fields->all() as $field) {
339
if ($field instanceof Field\ChoiceFormField) {
0 commit comments