DOCS Update do blocks for DataQuery::having() to reflect correct input types

This commit is contained in:
Robbie Averill 2018-09-25 17:34:03 +02:00
parent f01473f1b3
commit f5929d87e0
2 changed files with 3 additions and 3 deletions

View File

@ -599,7 +599,7 @@ class DataQuery
/** /**
* Append a HAVING clause to this query. * Append a HAVING clause to this query.
* *
* @param string $having Escaped SQL statement * @param mixed $having Predicate(s) to set, as escaped SQL statements or parameterised queries
* @return $this * @return $this
*/ */
public function having($having) public function having($having)

View File

@ -481,7 +481,7 @@ class SQLSelect extends SQLConditionalExpression
* *
* @see SQLSelect::addWhere() for syntax examples * @see SQLSelect::addWhere() for syntax examples
* *
* @param mixed $having Predicate(s) to set, as escaped SQL statements or paramaterised queries * @param mixed $having Predicate(s) to set, as escaped SQL statements or parameterised queries
* @param mixed $having,... Unlimited additional predicates * @param mixed $having,... Unlimited additional predicates
* @return $this Self reference * @return $this Self reference
*/ */
@ -497,7 +497,7 @@ class SQLSelect extends SQLConditionalExpression
* *
* @see SQLSelect::addWhere() for syntax examples * @see SQLSelect::addWhere() for syntax examples
* *
* @param mixed $having Predicate(s) to set, as escaped SQL statements or paramaterised queries * @param mixed $having Predicate(s) to set, as escaped SQL statements or parameterised queries
* @param mixed $having,... Unlimited additional predicates * @param mixed $having,... Unlimited additional predicates
* @return $this Self reference * @return $this Self reference
*/ */