From 7e696458c3a90972320305c72e0683162edb8f30 Mon Sep 17 00:00:00 2001 From: Einar Hansen <49709354+einar-hansen@users.noreply.github.com> Date: Mon, 5 Aug 2024 17:04:31 +0200 Subject: [PATCH] Fix docblocks for where(All|AnyNone) query methods (#52388) --- src/Illuminate/Database/Query/Builder.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/Illuminate/Database/Query/Builder.php b/src/Illuminate/Database/Query/Builder.php index 20b18b9025cb..7dde9d31b1b4 100755 --- a/src/Illuminate/Database/Query/Builder.php +++ b/src/Illuminate/Database/Query/Builder.php @@ -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 @@ -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 */ @@ -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 @@ -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 */ @@ -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 @@ -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 */