Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix countAll() docs #4050

Merged
merged 2 commits into from
Jan 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions system/Database/BaseBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down Expand Up @@ -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?
*
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/database/query_builder.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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]]]])

Expand Down