Skip to content

Commit 5264f5c

Browse files
committed
Fix param order
1 parent b6456ac commit 5264f5c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Database/Database.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3454,8 +3454,8 @@ public function createDocument(string $collection, Document $document): Document
34543454
*
34553455
* @param string $collection
34563456
* @param array<Document> $documents
3457-
* @param callable|null $onNext
34583457
* @param int $batchSize
3458+
* @param callable|null $onNext
34593459
* @return int
34603460
* @throws AuthorizationException
34613461
* @throws StructureException
@@ -4076,8 +4076,8 @@ public function updateDocument(string $collection, string $id, Document $documen
40764076
* @param string $collection
40774077
* @param Document $updates
40784078
* @param array<Query> $queries
4079-
* @param callable|null $onNext
40804079
* @param int $batchSize
4080+
* @param callable|null $onNext
40814081
* @return int
40824082
* @throws AuthorizationException
40834083
* @throws ConflictException
@@ -4647,8 +4647,8 @@ private function getJunctionCollection(Document $collection, Document $relatedCo
46474647
*
46484648
* @param string $collection
46494649
* @param array<Document> $documents
4650-
* @param callable|null $onNext
46514650
* @param int $batchSize
4651+
* @param callable|null $onNext
46524652
* @return int
46534653
* @throws StructureException
46544654
* @throws \Throwable
@@ -5456,8 +5456,8 @@ private function deleteCascade(Document $collection, Document $relatedCollection
54565456
*
54575457
* @param string $collection
54585458
* @param array<Query> $queries
5459-
* @param callable|null $onNext
54605459
* @param int $batchSize
5460+
* @param callable|null $onNext
54615461
* @return int
54625462
* @throws AuthorizationException
54635463
* @throws DatabaseException

0 commit comments

Comments
 (0)