Skip to content

Commit b358b82

Browse files
committed
Fix incorrect convertion of UUID to int
1 parent ed9228b commit b358b82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Models/User.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public function getScoutKey(): string
150150
public function toSearchableArray(): array
151151
{
152152
return [
153-
'id' => (int) $this->id,
153+
'id' => $this->id,
154154
'name' => $this->name,
155155
];
156156
}

0 commit comments

Comments
 (0)