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 dcfe9a8 commit 0d8439dCopy full SHA for 0d8439d
src/Repository/IndexQueueRepository.php
@@ -156,6 +156,7 @@ public function denormalizeDatabaseEntry(array $entry): IndexQueue
156
//bigint field potentially exceed max php int values on 32 bit systems, therefore this is handled as string
157
$entry['operationTime'] = (string)$entry['operationTime'];
158
$entry['dispatched'] = (string)$entry['dispatched'];
159
+ $entry['id'] = (string)$entry['id'];
160
161
return $this->denormalizer->denormalize($entry, IndexQueue::class);
162
}
0 commit comments