@@ -11,7 +11,7 @@ trait BuilderWhere
11
11
/**
12
12
* Add an or where all statement to the query.
13
13
*
14
- * @param \Illuminate\Database\Query\ Expression|string $column
14
+ * @param Expression|string $column
15
15
*/
16
16
public function orWhereAll ($ column , string $ operator , iterable $ values ): static
17
17
{
@@ -21,7 +21,7 @@ public function orWhereAll($column, string $operator, iterable $values): static
21
21
/**
22
22
* Add an or where any statement to the query.
23
23
*
24
- * @param \Illuminate\Database\Query\ Expression|string $column
24
+ * @param Expression|string $column
25
25
*/
26
26
public function orWhereAny ($ column , string $ operator , iterable $ values ): static
27
27
{
@@ -31,7 +31,7 @@ public function orWhereAny($column, string $operator, iterable $values): static
31
31
/**
32
32
* Add an or where between symmetric statement to the query.
33
33
*
34
- * @param \Illuminate\Database\Query\ Expression|string $column
34
+ * @param Expression|string $column
35
35
*/
36
36
public function orWhereBetweenSymmetric ($ column , iterable $ values ): static
37
37
{
@@ -41,7 +41,7 @@ public function orWhereBetweenSymmetric($column, iterable $values): static
41
41
/**
42
42
* Add an or where boolean statement to the query.
43
43
*
44
- * @param \Illuminate\Database\Query\ Expression|string $column
44
+ * @param Expression|string $column
45
45
*/
46
46
public function orWhereBoolean ($ column , bool $ value ): static
47
47
{
@@ -51,7 +51,7 @@ public function orWhereBoolean($column, bool $value): static
51
51
/**
52
52
* Add an or where integer array matches statement to the query.
53
53
*
54
- * @param \Illuminate\Database\Query\ Expression|string $column
54
+ * @param Expression|string $column
55
55
*/
56
56
public function orWhereIntegerArrayMatches ($ column , string $ query ): static
57
57
{
@@ -61,8 +61,8 @@ public function orWhereIntegerArrayMatches($column, string $query): static
61
61
/**
62
62
* Add an "or where like" statement to the query.
63
63
*
64
- * @param \Illuminate\Database\Query\ Expression|string $column
65
- * @param \Illuminate\Database\Query\ Expression|string $value
64
+ * @param Expression|string $column
65
+ * @param Expression|string $value
66
66
*/
67
67
public function orWhereLike ($ column , $ value , bool $ caseInsensitive = false ): static
68
68
{
@@ -72,7 +72,7 @@ public function orWhereLike($column, $value, bool $caseInsensitive = false): sta
72
72
/**
73
73
* Add an or where not all statement to the query.
74
74
*
75
- * @param \Illuminate\Database\Query\ Expression|string $column
75
+ * @param Expression|string $column
76
76
*/
77
77
public function orWhereNotAll ($ column , string $ operator , iterable $ values ): static
78
78
{
@@ -82,7 +82,7 @@ public function orWhereNotAll($column, string $operator, iterable $values): stat
82
82
/**
83
83
* Add an or where not any statement to the query.
84
84
*
85
- * @param \Illuminate\Database\Query\ Expression|string $column
85
+ * @param Expression|string $column
86
86
*/
87
87
public function orWhereNotAny ($ column , string $ operator , iterable $ values ): static
88
88
{
@@ -92,7 +92,7 @@ public function orWhereNotAny($column, string $operator, iterable $values): stat
92
92
/**
93
93
* Add an or where not between symmetric statement to the query.
94
94
*
95
- * @param \Illuminate\Database\Query\ Expression|string $column
95
+ * @param Expression|string $column
96
96
*/
97
97
public function orWhereNotBetweenSymmetric ($ column , iterable $ values ): static
98
98
{
@@ -102,7 +102,7 @@ public function orWhereNotBetweenSymmetric($column, iterable $values): static
102
102
/**
103
103
* Add an or where not boolean statement to the query.
104
104
*
105
- * @param \Illuminate\Database\Query\ Expression|string $column
105
+ * @param Expression|string $column
106
106
*/
107
107
public function orWhereNotBoolean ($ column , bool $ value ): static
108
108
{
@@ -112,7 +112,7 @@ public function orWhereNotBoolean($column, bool $value): static
112
112
/**
113
113
* Add a where all statement to the query.
114
114
*
115
- * @param \Illuminate\Database\Query\ Expression|string $column
115
+ * @param Expression|string $column
116
116
* @param 'and'|'or' $boolean
117
117
*/
118
118
public function whereAll ($ column , string $ operator , iterable $ values , string $ boolean = 'and ' , bool $ not = false ): static
@@ -128,7 +128,7 @@ public function whereAll($column, string $operator, iterable $values, string $bo
128
128
/**
129
129
* Add a where any statement to the query.
130
130
*
131
- * @param \Illuminate\Database\Query\ Expression|string $column
131
+ * @param Expression|string $column
132
132
* @param 'and'|'or' $boolean
133
133
*/
134
134
public function whereAny ($ column , string $ operator , iterable $ values , string $ boolean = 'and ' , bool $ not = false ): static
@@ -144,7 +144,7 @@ public function whereAny($column, string $operator, iterable $values, string $bo
144
144
/**
145
145
* Add a where between symmetric statement to the query.
146
146
*
147
- * @param \Illuminate\Database\Query\ Expression|string $column
147
+ * @param Expression|string $column
148
148
* @param 'and'|'or' $boolean
149
149
*/
150
150
public function whereBetweenSymmetric ($ column , iterable $ values , $ boolean = 'and ' , bool $ not = false ): static
@@ -159,7 +159,7 @@ public function whereBetweenSymmetric($column, iterable $values, $boolean = 'and
159
159
/**
160
160
* Add a where boolean statement to the query.
161
161
*
162
- * @param \Illuminate\Database\Query\ Expression|string $column
162
+ * @param Expression|string $column
163
163
*/
164
164
public function whereBoolean ($ column , bool $ value ): static
165
165
{
@@ -169,7 +169,7 @@ public function whereBoolean($column, bool $value): static
169
169
/**
170
170
* Add a where integer array matches statement to the query.
171
171
*
172
- * @param \Illuminate\Database\Query\ Expression|string $column
172
+ * @param Expression|string $column
173
173
*/
174
174
public function whereIntegerArrayMatches ($ column , string $ query ): static
175
175
{
@@ -179,8 +179,8 @@ public function whereIntegerArrayMatches($column, string $query): static
179
179
/**
180
180
* Add a "where month" statement to the query.
181
181
*
182
- * @param \Illuminate\Database\Query\ Expression|string $column
183
- * @param \Illuminate\Database\Query\ Expression|string $value
182
+ * @param Expression|string $column
183
+ * @param Expression|string $value
184
184
* @param string $boolean
185
185
*/
186
186
public function whereLike ($ column , $ value , bool $ caseInsensitive = false , $ boolean = 'and ' ): static
@@ -196,7 +196,7 @@ public function whereLike($column, $value, bool $caseInsensitive = false, $boole
196
196
/**
197
197
* Add a where not all statement to the query.
198
198
*
199
- * @param \Illuminate\Database\Query\ Expression|string $column
199
+ * @param Expression|string $column
200
200
*/
201
201
public function whereNotAll ($ column , string $ operator , iterable $ values ): static
202
202
{
@@ -206,7 +206,7 @@ public function whereNotAll($column, string $operator, iterable $values): static
206
206
/**
207
207
* Add a where not any statement to the query.
208
208
*
209
- * @param \Illuminate\Database\Query\ Expression|string $column
209
+ * @param Expression|string $column
210
210
*/
211
211
public function whereNotAny ($ column , string $ operator , iterable $ values ): static
212
212
{
@@ -216,7 +216,7 @@ public function whereNotAny($column, string $operator, iterable $values): static
216
216
/**
217
217
* Add a where not between symmetric statement to the query.
218
218
*
219
- * @param \Illuminate\Database\Query\ Expression|string $column
219
+ * @param Expression|string $column
220
220
*/
221
221
public function whereNotBetweenSymmetric ($ column , iterable $ values ): static
222
222
{
@@ -226,7 +226,7 @@ public function whereNotBetweenSymmetric($column, iterable $values): static
226
226
/**
227
227
* Add a where not boolean statement to the query.
228
228
*
229
- * @param \Illuminate\Database\Query\ Expression|string $column
229
+ * @param Expression|string $column
230
230
*/
231
231
public function whereNotBoolean ($ column , bool $ value ): static
232
232
{
0 commit comments