Merge pull request #8406 from creative-commoners/pulls/4.2/having-docblocks

DOCS Update do blocks for DataQuery::having() to reflect correct input types
This commit is contained in:
Loz Calver 2018-10-02 10:26:31 +02:00 committed by GitHub
commit ddc86967ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
*/ */