Skip to content

Commit 2afc5e4

Browse files
committed
fix tests
1 parent ca4f235 commit 2afc5e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Service/SearchIndex/IndexQueue/EnqueueService.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function enqueueByTag(Tag $tag): EnqueueService
6565
ElementType::ASSET->value,
6666
IndexName::ASSET->value,
6767
IndexQueueOperation::UPDATE->value,
68-
$this->timeService->getCurrentMillisecondTimestamp(),
68+
(string)$this->timeService->getCurrentMillisecondTimestamp(),
6969
'0',
7070
],
7171
'id',
@@ -80,7 +80,7 @@ public function enqueueByTag(Tag $tag): EnqueueService
8080
[
8181
ElementType::DATA_OBJECT->value,
8282
IndexQueueOperation::UPDATE->value,
83-
$this->timeService->getCurrentMillisecondTimestamp(),
83+
(string)$this->timeService->getCurrentMillisecondTimestamp(),
8484
'0',
8585
],
8686
'id, className',
@@ -177,7 +177,7 @@ public function enqueueDocuments(): EnqueueService
177177
ElementType::DOCUMENT->value,
178178
IndexName::DOCUMENT->value,
179179
IndexQueueOperation::UPDATE->value,
180-
$this->timeService->getCurrentMillisecondTimestamp(),
180+
(string)$this->timeService->getCurrentMillisecondTimestamp(),
181181
'0',
182182
]
183183
);

0 commit comments

Comments
 (0)