Skip to content

Commit

Permalink
Fix docblocks for where(All|AnyNone) query methods (#52388)
Browse files Browse the repository at this point in the history
  • Loading branch information
einar-hansen authored Aug 5, 2024
1 parent cef2ce3 commit 7e69645
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/Illuminate/Database/Query/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -2238,7 +2238,7 @@ public function orWhereFullText($columns, $value, array $options = [])
/**
* Add a "where" clause to the query for multiple columns with "and" conditions between them.
*
* @param string[] $columns
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
* @param mixed $operator
* @param mixed $value
* @param string $boolean
Expand All @@ -2262,8 +2262,8 @@ public function whereAll($columns, $operator = null, $value = null, $boolean = '
/**
* Add an "or where" clause to the query for multiple columns with "and" conditions between them.
*
* @param string[] $columns
* @param string $operator
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
* @param mixed $operator
* @param mixed $value
* @return $this
*/
Expand All @@ -2275,8 +2275,8 @@ public function orWhereAll($columns, $operator = null, $value = null)
/**
* Add a "where" clause to the query for multiple columns with "or" conditions between them.
*
* @param string[] $columns
* @param string $operator
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
* @param mixed $operator
* @param mixed $value
* @param string $boolean
* @return $this
Expand All @@ -2299,8 +2299,8 @@ public function whereAny($columns, $operator = null, $value = null, $boolean = '
/**
* Add an "or where" clause to the query for multiple columns with "or" conditions between them.
*
* @param string[] $columns
* @param string $operator
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
* @param mixed $operator
* @param mixed $value
* @return $this
*/
Expand All @@ -2312,8 +2312,8 @@ public function orWhereAny($columns, $operator = null, $value = null)
/**
* Add a "where not" clause to the query for multiple columns where none of the conditions should be true.
*
* @param string[] $columns
* @param string $operator
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
* @param mixed $operator
* @param mixed $value
* @param string $boolean
* @return $this
Expand All @@ -2326,8 +2326,8 @@ public function whereNone($columns, $operator = null, $value = null, $boolean =
/**
* Add an "or where not" clause to the query for multiple columns where none of the conditions should be true.
*
* @param string[] $columns
* @param string $operator
* @param \Illuminate\Contracts\Database\Query\Expression[]|string[] $columns
* @param mixed $operator
* @param mixed $value
* @return $this
*/
Expand Down

0 comments on commit 7e69645

Please sign in to comment.