Skip to content

Commit

Permalink
added array doc block for aggr. functions (#35283)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeByishimo committed Nov 19, 2020
1 parent 6b8285a commit 1a552b7
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -442,7 +442,7 @@ public function withCount($relations)
/**
* Add subselect queries to include the max of the relation's column.
*
* @param string $relation
* @param string|array $relation
* @param string $column
* @return $this
*/
Expand All @@ -454,7 +454,7 @@ public function withMax($relation, $column)
/**
* Add subselect queries to include the min of the relation's column.
*
* @param string $relation
* @param string|array $relation
* @param string $column
* @return $this
*/
Expand All @@ -466,7 +466,7 @@ public function withMin($relation, $column)
/**
* Add subselect queries to include the sum of the relation's column.
*
* @param string $relation
* @param string|array $relation
* @param string $column
* @return $this
*/
Expand All @@ -478,7 +478,7 @@ public function withSum($relation, $column)
/**
* Add subselect queries to include the average of the relation's column.
*
* @param string $relation
* @param string|array $relation
* @param string $column
* @return $this
*/
Expand Down

0 comments on commit 1a552b7

Please sign in to comment.