Skip to content

Commit

Permalink
fix psalm
Browse files Browse the repository at this point in the history
Signed-off-by: Maxence Lange <[email protected]>
  • Loading branch information
ArtificialOwl committed Nov 6, 2023
1 parent 2fc9ba3 commit 63eb880
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function store(IFilesMetadata $filesMetadata): void {
->setValue('file_id', $qb->createNamedParameter($filesMetadata->getFileId(), IQueryBuilder::PARAM_INT))
->setValue('json', $qb->createNamedParameter(json_encode($filesMetadata->jsonSerialize())))
->setValue('sync_token', $qb->createNamedParameter($this->generateSyncToken()))
->setValue('last_update', $qb->createFunction('NOW()'));
->setValue(column: 'last_update', value: $qb->createFunction('NOW()'));
$qb->executeStatement();
}

Expand Down

0 comments on commit 63eb880

Please sign in to comment.