Skip to content

Commit 81d0221

Browse files
[10.x] Update type on Query/Builder.php (#47349)
* Update Builder.php * Update Builder.php --------- Co-authored-by: Taylor Otwell <[email protected]>
1 parent b900458 commit 81d0221

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Database/Query/Builder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2082,7 +2082,7 @@ public function groupByRaw($sql, array $bindings = [])
20822082
/**
20832083
* Add a "having" clause to the query.
20842084
*
2085-
* @param \Closure|string $column
2085+
* @param \Illuminate\Contracts\Database\Query\Expression|\Closure|string $column
20862086
* @param string|int|float|null $operator
20872087
* @param string|int|float|null $value
20882088
* @param string $boolean
@@ -2134,7 +2134,7 @@ public function having($column, $operator = null, $value = null, $boolean = 'and
21342134
/**
21352135
* Add an "or having" clause to the query.
21362136
*
2137-
* @param \Closure|string $column
2137+
* @param \Illuminate\Contracts\Database\Query\Expression|\Closure|string $column
21382138
* @param string|int|float|null $operator
21392139
* @param string|int|float|null $value
21402140
* @return $this

0 commit comments

Comments
 (0)