Skip to content

Commit 1576a07

Browse files
tpetrygithub-actions[bot]
authored andcommitted
style: fix styling
1 parent 0212619 commit 1576a07

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

src/Query/BuilderOrder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ trait BuilderOrder
1313
/**
1414
* Add a vector-similarity "order by" clause to the query.
1515
*
16-
* @param \Illuminate\Database\Query\Expression|string $column
16+
* @param Expression|string $column
1717
* @param array<int, float>|\Illuminate\Support\Collection<int, float> $vector
1818
*/
1919
public function orderByVectorSimilarity($column, $vector, string $distance = 'cosine'): static

src/Query/BuilderWhere.php

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ trait BuilderWhere
1111
/**
1212
* Add an or where all statement to the query.
1313
*
14-
* @param \Illuminate\Database\Query\Expression|string $column
14+
* @param Expression|string $column
1515
*/
1616
public function orWhereAll($column, string $operator, iterable $values): static
1717
{
@@ -21,7 +21,7 @@ public function orWhereAll($column, string $operator, iterable $values): static
2121
/**
2222
* Add an or where any statement to the query.
2323
*
24-
* @param \Illuminate\Database\Query\Expression|string $column
24+
* @param Expression|string $column
2525
*/
2626
public function orWhereAny($column, string $operator, iterable $values): static
2727
{
@@ -31,7 +31,7 @@ public function orWhereAny($column, string $operator, iterable $values): static
3131
/**
3232
* Add an or where between symmetric statement to the query.
3333
*
34-
* @param \Illuminate\Database\Query\Expression|string $column
34+
* @param Expression|string $column
3535
*/
3636
public function orWhereBetweenSymmetric($column, iterable $values): static
3737
{
@@ -41,7 +41,7 @@ public function orWhereBetweenSymmetric($column, iterable $values): static
4141
/**
4242
* Add an or where boolean statement to the query.
4343
*
44-
* @param \Illuminate\Database\Query\Expression|string $column
44+
* @param Expression|string $column
4545
*/
4646
public function orWhereBoolean($column, bool $value): static
4747
{
@@ -51,7 +51,7 @@ public function orWhereBoolean($column, bool $value): static
5151
/**
5252
* Add an or where integer array matches statement to the query.
5353
*
54-
* @param \Illuminate\Database\Query\Expression|string $column
54+
* @param Expression|string $column
5555
*/
5656
public function orWhereIntegerArrayMatches($column, string $query): static
5757
{
@@ -61,8 +61,8 @@ public function orWhereIntegerArrayMatches($column, string $query): static
6161
/**
6262
* Add an "or where like" statement to the query.
6363
*
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
6666
*/
6767
public function orWhereLike($column, $value, bool $caseInsensitive = false): static
6868
{
@@ -72,7 +72,7 @@ public function orWhereLike($column, $value, bool $caseInsensitive = false): sta
7272
/**
7373
* Add an or where not all statement to the query.
7474
*
75-
* @param \Illuminate\Database\Query\Expression|string $column
75+
* @param Expression|string $column
7676
*/
7777
public function orWhereNotAll($column, string $operator, iterable $values): static
7878
{
@@ -82,7 +82,7 @@ public function orWhereNotAll($column, string $operator, iterable $values): stat
8282
/**
8383
* Add an or where not any statement to the query.
8484
*
85-
* @param \Illuminate\Database\Query\Expression|string $column
85+
* @param Expression|string $column
8686
*/
8787
public function orWhereNotAny($column, string $operator, iterable $values): static
8888
{
@@ -92,7 +92,7 @@ public function orWhereNotAny($column, string $operator, iterable $values): stat
9292
/**
9393
* Add an or where not between symmetric statement to the query.
9494
*
95-
* @param \Illuminate\Database\Query\Expression|string $column
95+
* @param Expression|string $column
9696
*/
9797
public function orWhereNotBetweenSymmetric($column, iterable $values): static
9898
{
@@ -102,7 +102,7 @@ public function orWhereNotBetweenSymmetric($column, iterable $values): static
102102
/**
103103
* Add an or where not boolean statement to the query.
104104
*
105-
* @param \Illuminate\Database\Query\Expression|string $column
105+
* @param Expression|string $column
106106
*/
107107
public function orWhereNotBoolean($column, bool $value): static
108108
{
@@ -112,7 +112,7 @@ public function orWhereNotBoolean($column, bool $value): static
112112
/**
113113
* Add a where all statement to the query.
114114
*
115-
* @param \Illuminate\Database\Query\Expression|string $column
115+
* @param Expression|string $column
116116
* @param 'and'|'or' $boolean
117117
*/
118118
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
128128
/**
129129
* Add a where any statement to the query.
130130
*
131-
* @param \Illuminate\Database\Query\Expression|string $column
131+
* @param Expression|string $column
132132
* @param 'and'|'or' $boolean
133133
*/
134134
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
144144
/**
145145
* Add a where between symmetric statement to the query.
146146
*
147-
* @param \Illuminate\Database\Query\Expression|string $column
147+
* @param Expression|string $column
148148
* @param 'and'|'or' $boolean
149149
*/
150150
public function whereBetweenSymmetric($column, iterable $values, $boolean = 'and', bool $not = false): static
@@ -159,7 +159,7 @@ public function whereBetweenSymmetric($column, iterable $values, $boolean = 'and
159159
/**
160160
* Add a where boolean statement to the query.
161161
*
162-
* @param \Illuminate\Database\Query\Expression|string $column
162+
* @param Expression|string $column
163163
*/
164164
public function whereBoolean($column, bool $value): static
165165
{
@@ -169,7 +169,7 @@ public function whereBoolean($column, bool $value): static
169169
/**
170170
* Add a where integer array matches statement to the query.
171171
*
172-
* @param \Illuminate\Database\Query\Expression|string $column
172+
* @param Expression|string $column
173173
*/
174174
public function whereIntegerArrayMatches($column, string $query): static
175175
{
@@ -179,8 +179,8 @@ public function whereIntegerArrayMatches($column, string $query): static
179179
/**
180180
* Add a "where month" statement to the query.
181181
*
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
184184
* @param string $boolean
185185
*/
186186
public function whereLike($column, $value, bool $caseInsensitive = false, $boolean = 'and'): static
@@ -196,7 +196,7 @@ public function whereLike($column, $value, bool $caseInsensitive = false, $boole
196196
/**
197197
* Add a where not all statement to the query.
198198
*
199-
* @param \Illuminate\Database\Query\Expression|string $column
199+
* @param Expression|string $column
200200
*/
201201
public function whereNotAll($column, string $operator, iterable $values): static
202202
{
@@ -206,7 +206,7 @@ public function whereNotAll($column, string $operator, iterable $values): static
206206
/**
207207
* Add a where not any statement to the query.
208208
*
209-
* @param \Illuminate\Database\Query\Expression|string $column
209+
* @param Expression|string $column
210210
*/
211211
public function whereNotAny($column, string $operator, iterable $values): static
212212
{
@@ -216,7 +216,7 @@ public function whereNotAny($column, string $operator, iterable $values): static
216216
/**
217217
* Add a where not between symmetric statement to the query.
218218
*
219-
* @param \Illuminate\Database\Query\Expression|string $column
219+
* @param Expression|string $column
220220
*/
221221
public function whereNotBetweenSymmetric($column, iterable $values): static
222222
{
@@ -226,7 +226,7 @@ public function whereNotBetweenSymmetric($column, iterable $values): static
226226
/**
227227
* Add a where not boolean statement to the query.
228228
*
229-
* @param \Illuminate\Database\Query\Expression|string $column
229+
* @param Expression|string $column
230230
*/
231231
public function whereNotBoolean($column, bool $value): static
232232
{

0 commit comments

Comments
 (0)