Skip to content

Commit 1bebb29

Browse files
committed
Revert "(fix): Add explicit separator to implode for PHPStan type safety"
This reverts commit afc00ba.
1 parent afc00ba commit 1bebb29

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Database/Database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9207,7 +9207,7 @@ public function getCacheKeys(string $collectionId, ?string $documentId = null, a
92079207
$documentKey = $documentHashKey = "{$collectionKey}:{$documentId}";
92089208

92099209
if (!empty($selects)) {
9210-
$documentHashKey = $documentKey . ':' . \md5(\implode('', $selects));
9210+
$documentHashKey = $documentKey . ':' . \md5(\implode($selects));
92119211
}
92129212
}
92139213

0 commit comments

Comments
 (0)