Skip to content

Commit

Permalink
fix: array to string conversion when normalizing criteria
Browse files Browse the repository at this point in the history
  • Loading branch information
williarin committed Jul 17, 2024
1 parent 9d96e8d commit 17406c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bridge/Repository/NormalizerTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ protected function normalizeCriteria(
$resolvedValue = $ignoreValidation
? $value
: $this->validateFieldValue($field, $value, $entityClassName);
$output[$field] = (string) $this->serializer->normalize($resolvedValue);
$output[$field] = $this->serializer->normalize($resolvedValue);
}
}

Expand Down

0 comments on commit 17406c5

Please sign in to comment.