From a02151b6bb45039892843598c0020c4459be6d63 Mon Sep 17 00:00:00 2001 From: kenjis Date: Wed, 13 Apr 2022 15:56:51 +0900 Subject: [PATCH] docs: update Class Reference --- user_guide_src/source/database/query_builder.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/user_guide_src/source/database/query_builder.rst b/user_guide_src/source/database/query_builder.rst index 145cf323340e..a0094d0b98a2 100755 --- a/user_guide_src/source/database/query_builder.rst +++ b/user_guide_src/source/database/query_builder.rst @@ -1064,7 +1064,7 @@ Class Reference .. php:method:: select([$select = '*'[, $escape = null]]) - :param string $select: The SELECT portion of a query + :param array|RawSql|string $select: The SELECT portion of a query :param bool $escape: Whether to escape values and identifiers :returns: ``BaseBuilder`` instance (method chaining) :rtype: ``BaseBuilder`` @@ -1165,7 +1165,7 @@ Class Reference .. php:method:: where($key[, $value = null[, $escape = null]]) - :param mixed $key: Name of field to compare, or associative array + :param array|RawSql|string $key: Name of field to compare, or associative array :param mixed $value: If a single key, compared to this value :param bool $escape: Whether to escape values and identifiers :returns: ``BaseBuilder`` instance (method chaining) @@ -1260,7 +1260,7 @@ Class Reference .. php:method:: like($field[, $match = ''[, $side = 'both'[, $escape = null[, $insensitiveSearch = false]]]]) - :param string $field: Field name + :param array|RawSql|string $field: Field name :param string $match: Text portion to match :param string $side: Which side of the expression to put the '%' wildcard on :param bool $escape: Whether to escape values and identifiers