From 267d6c075474c76e62f64207b29bca716817557a Mon Sep 17 00:00:00 2001 From: kenjis Date: Sat, 3 Feb 2024 09:24:21 +0900 Subject: [PATCH] docs: add () to methods for consistency --- system/Database/BaseBuilder.php | 8 ++++---- system/Database/Postgre/Builder.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/system/Database/BaseBuilder.php b/system/Database/BaseBuilder.php index 48302ab26fc7..bc005f48f407 100644 --- a/system/Database/BaseBuilder.php +++ b/system/Database/BaseBuilder.php @@ -1968,7 +1968,7 @@ public function upsertBatch($set = null, ?bool $escape = null, int $batchSize = /** * Generates a platform-specific upsertBatch string from the supplied data * - * @used-by batchExecute + * @used-by batchExecute() * * @param string $table Protected table name * @param list $keys QBKeys @@ -2195,7 +2195,7 @@ public function insertBatch($set = null, ?bool $escape = null, int $batchSize = /** * Generates a platform-specific insert string from the supplied data. * - * @used-by batchExecute + * @used-by batchExecute() * * @param string $table Protected table name * @param list $keys QBKeys @@ -2563,7 +2563,7 @@ public function updateBatch($set = null, $constraints = null, int $batchSize = 1 /** * Generates a platform-specific batch update string from the supplied data * - * @used-by batchExecute + * @used-by batchExecute() * * @param string $table Protected table name * @param list $keys QBKeys @@ -2825,7 +2825,7 @@ public function deleteBatch($set = null, $constraints = null, int $batchSize = 1 /** * Generates a platform-specific batch update string from the supplied data * - * @used-by batchExecute + * @used-by batchExecute() * * @param string $table Protected table name * @param list $keys QBKeys diff --git a/system/Database/Postgre/Builder.php b/system/Database/Postgre/Builder.php index 3749d8383237..8bd008f20916 100644 --- a/system/Database/Postgre/Builder.php +++ b/system/Database/Postgre/Builder.php @@ -315,7 +315,7 @@ public function join(string $table, $cond, string $type = '', ?bool $escape = nu /** * Generates a platform-specific batch update string from the supplied data * - * @used-by batchExecute + * @used-by batchExecute() * * @param string $table Protected table name * @param list $keys QBKeys