mirror of
https://github.com/YGGverse/Yo.git
synced 2025-02-05 11:24:20 +00:00
fix data types
This commit is contained in:
parent
b7444b8f12
commit
10b08215d0
@ -147,13 +147,13 @@ for ($i = 0; $i <= $total; $i++)
|
||||
$index->addDocument(
|
||||
[
|
||||
'url' => $url,
|
||||
'time' => $remote->timeUpdated,
|
||||
'code' => $remote->httpCode,
|
||||
'mime' => $remote->mime,
|
||||
'size' => $remote->size,
|
||||
'title' => $remote->title,
|
||||
'description' => $remote->description,
|
||||
'keywords' => $remote->keywords
|
||||
'time' => (int) $remote->timeUpdated,
|
||||
'code' => (int) $remote->httpCode,
|
||||
'size' => (int) $remote->size,
|
||||
'mime' => (string) $remote->mime,
|
||||
'title' => (string) $remote->title,
|
||||
'description' => (string) $remote->description,
|
||||
'keywords' => (string) $remote->keywords
|
||||
]
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user