diff --git a/system/Database/BaseBuilder.php b/system/Database/BaseBuilder.php index a6f983a8065e..f167afee9be5 100644 --- a/system/Database/BaseBuilder.php +++ b/system/Database/BaseBuilder.php @@ -1319,11 +1319,11 @@ protected function _like($field, string $match = '', string $type = 'AND ', stri /** * Platform independent LIKE statement builder. * - * @param string|null $prefix - * @param string $column - * @param string|null $not - * @param string $bind - * @param boolean $insensitiveSearch + * @param string|null $prefix + * @param string $column + * @param string|null $not + * @param string $bind + * @param boolean $insensitiveSearch * * @return string $like_statement */ @@ -1882,7 +1882,7 @@ public function get(int $limit = null, int $offset = 0, bool $reset = true) * "Count All" query * * Generates a platform-specific query string that counts all records in - * the specified database + * the particular table * * @param boolean $reset Are we want to clear query builder values? * diff --git a/user_guide_src/source/database/query_builder.rst b/user_guide_src/source/database/query_builder.rst index bd798d0cb6d2..b9dad83d6155 100755 --- a/user_guide_src/source/database/query_builder.rst +++ b/user_guide_src/source/database/query_builder.rst @@ -1266,7 +1266,7 @@ Class Reference :rtype: int Generates a platform-specific query string that counts - all records returned by an Query Builder query. + all records in the particular table. .. php:method:: get([$limit = null[, $offset = null[, $reset = true]]]])