Skip to content

Commit b294545

Browse files
ryanmitchellgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 7d058ac commit b294545

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Typesense/Query.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ private function transformArrayOfValuesForTypeSense(string $schemaType, array $v
8585

8686
private function transformValueForTypeSense(string $schemaType, mixed $value): mixed
8787
{
88-
return match(str_replace('[]', '', $schemaType)) {
88+
return match (str_replace('[]', '', $schemaType)) {
8989
'int32', 'int64' => (int) $value,
9090
'float' => (float) $value,
9191
'bool' => (bool) $value,

0 commit comments

Comments
 (0)