eee
This commit is contained in:
@@ -16,8 +16,7 @@ class ArrayProxy extends TypesProxy
|
||||
public function dispatch(object $form, string $field, mixed $value): bool
|
||||
{
|
||||
if (empty($value)) {
|
||||
$form->{$field} = !$this->allowsNull ? [] : null;
|
||||
return true;
|
||||
return ($form->{$field} = []) === [];
|
||||
} else {
|
||||
return $value == ($form->{$field} = $value);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user