Skip to content

Commit

Permalink
docs: update Class Reference
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed May 4, 2022
1 parent b3ab714 commit a02151b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions user_guide_src/source/database/query_builder.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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``
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit a02151b

Please sign in to comment.