@@ -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