@@ -65,8 +65,8 @@ public function enqueueByTag(Tag $tag): EnqueueService
6565 ElementType::ASSET ->value ,
6666 IndexName::ASSET ->value ,
6767 IndexQueueOperation::UPDATE ->value ,
68- $ this ->timeService ->getCurrentMillisecondTimestamp (),
69- 0 ,
68+ ( string ) $ this ->timeService ->getCurrentMillisecondTimestamp (),
69+ ' 0 ' ,
7070 ],
7171 'id ' ,
7272 ['ctype ' => ElementType::ASSET ->value , 'tagid ' => $ tag ->getId ()],
@@ -80,8 +80,8 @@ public function enqueueByTag(Tag $tag): EnqueueService
8080 [
8181 ElementType::DATA_OBJECT ->value ,
8282 IndexQueueOperation::UPDATE ->value ,
83- $ this ->timeService ->getCurrentMillisecondTimestamp (),
84- 0 ,
83+ ( string ) $ this ->timeService ->getCurrentMillisecondTimestamp (),
84+ ' 0 ' ,
8585 ],
8686 'id, className ' ,
8787 ['ctype ' => ElementType::DATA_OBJECT ->value , 'tagid ' => $ tag ->getId ()],
@@ -104,8 +104,8 @@ public function enqueueByClassDefinition(ClassDefinition $classDefinition): Enqu
104104 ElementType::DATA_OBJECT ->value ,
105105 $ classDefinition ->getName (),
106106 IndexQueueOperation::UPDATE ->value ,
107- $ this ->timeService ->getCurrentMillisecondTimestamp (),
108- 0 ,
107+ ( string ) $ this ->timeService ->getCurrentMillisecondTimestamp (),
108+ ' 0 ' ,
109109 ],
110110 'oo_id '
111111 );
@@ -125,8 +125,8 @@ public function enqueueDataObjectFolders(): EnqueueServiceInterface
125125 ElementType::DATA_OBJECT ->value ,
126126 IndexName::DATA_OBJECT_FOLDER ->value ,
127127 IndexQueueOperation::UPDATE ->value ,
128- $ this ->timeService ->getCurrentMillisecondTimestamp (),
129- 0 ,
128+ ( string ) $ this ->timeService ->getCurrentMillisecondTimestamp (),
129+ ' 0 ' ,
130130 ],
131131 )->where ('type = "folder" ' );
132132 $ this ->indexQueueRepository ->enqueueBySelectQuery ($ selectQuery );
@@ -151,8 +151,8 @@ public function enqueueAssets(): EnqueueService
151151 ElementType::ASSET ->value ,
152152 IndexName::ASSET ->value ,
153153 IndexQueueOperation::UPDATE ->value ,
154- $ this ->timeService ->getCurrentMillisecondTimestamp (),
155- 0 ,
154+ ( string ) $ this ->timeService ->getCurrentMillisecondTimestamp (),
155+ ' 0 ' ,
156156 ]
157157 );
158158 $ this ->indexQueueRepository ->enqueueBySelectQuery ($ selectQuery );
@@ -177,8 +177,8 @@ public function enqueueDocuments(): EnqueueService
177177 ElementType::DOCUMENT ->value ,
178178 IndexName::DOCUMENT ->value ,
179179 IndexQueueOperation::UPDATE ->value ,
180- $ this ->timeService ->getCurrentMillisecondTimestamp (),
181- 0 ,
180+ ( string ) $ this ->timeService ->getCurrentMillisecondTimestamp (),
181+ ' 0 ' ,
182182 ]
183183 );
184184 $ this ->indexQueueRepository ->enqueueBySelectQuery ($ selectQuery );
0 commit comments