Skip to content

Commit a02151b

Browse files
committed
docs: update Class Reference
1 parent b3ab714 commit a02151b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

user_guide_src/source/database/query_builder.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1064,7 +1064,7 @@ Class Reference
10641064

10651065
.. php:method:: select([$select = '*'[, $escape = null]])
10661066
1067-
:param string $select: The SELECT portion of a query
1067+
:param array|RawSql|string $select: The SELECT portion of a query
10681068
:param bool $escape: Whether to escape values and identifiers
10691069
:returns: ``BaseBuilder`` instance (method chaining)
10701070
:rtype: ``BaseBuilder``
@@ -1165,7 +1165,7 @@ Class Reference
11651165

11661166
.. php:method:: where($key[, $value = null[, $escape = null]])
11671167
1168-
:param mixed $key: Name of field to compare, or associative array
1168+
:param array|RawSql|string $key: Name of field to compare, or associative array
11691169
:param mixed $value: If a single key, compared to this value
11701170
:param bool $escape: Whether to escape values and identifiers
11711171
:returns: ``BaseBuilder`` instance (method chaining)
@@ -1260,7 +1260,7 @@ Class Reference
12601260

12611261
.. php:method:: like($field[, $match = ''[, $side = 'both'[, $escape = null[, $insensitiveSearch = false]]]])
12621262
1263-
:param string $field: Field name
1263+
:param array|RawSql|string $field: Field name
12641264
:param string $match: Text portion to match
12651265
:param string $side: Which side of the expression to put the '%' wildcard on
12661266
:param bool $escape: Whether to escape values and identifiers

0 commit comments

Comments
 (0)