Skip to content

Commit

Permalink
dates can be passed to having() (#54899)
Browse files Browse the repository at this point in the history
  • Loading branch information
miken32 authored Mar 5, 2025
1 parent 3dd1872 commit 154a0f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Illuminate/Database/Query/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -2400,8 +2400,8 @@ public function groupByRaw($sql, array $bindings = [])
* Add a "having" clause to the query.
*
* @param \Illuminate\Contracts\Database\Query\Expression|\Closure|string $column
* @param string|int|float|null $operator
* @param string|int|float|null $value
* @param \DateTimeInterface|string|int|float|null $operator
* @param \DateTimeInterface|string|int|float|null $value
* @param string $boolean
* @return $this
*/
Expand Down Expand Up @@ -2452,8 +2452,8 @@ public function having($column, $operator = null, $value = null, $boolean = 'and
* Add an "or having" clause to the query.
*
* @param \Illuminate\Contracts\Database\Query\Expression|\Closure|string $column
* @param string|int|float|null $operator
* @param string|int|float|null $value
* @param \DateTimeInterface|string|int|float|null $operator
* @param \DateTimeInterface|string|int|float|null $value
* @return $this
*/
public function orHaving($column, $operator = null, $value = null)
Expand Down

0 comments on commit 154a0f1

Please sign in to comment.