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.
1 parent 7d058ac commit b294545Copy full SHA for b294545
src/Typesense/Query.php
@@ -85,7 +85,7 @@ private function transformArrayOfValuesForTypeSense(string $schemaType, array $v
85
86
private function transformValueForTypeSense(string $schemaType, mixed $value): mixed
87
{
88
- return match(str_replace('[]', '', $schemaType)) {
+ return match (str_replace('[]', '', $schemaType)) {
89
'int32', 'int64' => (int) $value,
90
'float' => (float) $value,
91
'bool' => (bool) $value,
0 commit comments