Skip to content

Commit 267d6c0

Browse files
committed
docs: add () to methods for consistency
1 parent f5c3df5 commit 267d6c0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

system/Database/BaseBuilder.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1968,7 +1968,7 @@ public function upsertBatch($set = null, ?bool $escape = null, int $batchSize =
19681968
/**
19691969
* Generates a platform-specific upsertBatch string from the supplied data
19701970
*
1971-
* @used-by batchExecute
1971+
* @used-by batchExecute()
19721972
*
19731973
* @param string $table Protected table name
19741974
* @param list<string> $keys QBKeys
@@ -2195,7 +2195,7 @@ public function insertBatch($set = null, ?bool $escape = null, int $batchSize =
21952195
/**
21962196
* Generates a platform-specific insert string from the supplied data.
21972197
*
2198-
* @used-by batchExecute
2198+
* @used-by batchExecute()
21992199
*
22002200
* @param string $table Protected table name
22012201
* @param list<string> $keys QBKeys
@@ -2563,7 +2563,7 @@ public function updateBatch($set = null, $constraints = null, int $batchSize = 1
25632563
/**
25642564
* Generates a platform-specific batch update string from the supplied data
25652565
*
2566-
* @used-by batchExecute
2566+
* @used-by batchExecute()
25672567
*
25682568
* @param string $table Protected table name
25692569
* @param list<string> $keys QBKeys
@@ -2825,7 +2825,7 @@ public function deleteBatch($set = null, $constraints = null, int $batchSize = 1
28252825
/**
28262826
* Generates a platform-specific batch update string from the supplied data
28272827
*
2828-
* @used-by batchExecute
2828+
* @used-by batchExecute()
28292829
*
28302830
* @param string $table Protected table name
28312831
* @param list<string> $keys QBKeys

system/Database/Postgre/Builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ public function join(string $table, $cond, string $type = '', ?bool $escape = nu
315315
/**
316316
* Generates a platform-specific batch update string from the supplied data
317317
*
318-
* @used-by batchExecute
318+
* @used-by batchExecute()
319319
*
320320
* @param string $table Protected table name
321321
* @param list<string> $keys QBKeys

0 commit comments

Comments
 (0)