Skip to content

Commit 411735a

Browse files
authored
Merge pull request #2766 from mongodb/merge-4.1-into-4.2-1710254470287
Merge 4.1 into 4.2
2 parents 19fc801 + 92efdda commit 411735a

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/Query/Builder.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,11 +1154,6 @@ protected function compileWheres(): array
11541154
return $compiled;
11551155
}
11561156

1157-
/**
1158-
* @param array $where
1159-
*
1160-
* @return array
1161-
*/
11621157
protected function compileWhereBasic(array $where): array
11631158
{
11641159
$column = $where['column'];

tests/Models/User.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ protected function username(): Attribute
130130
{
131131
return Attribute::make(
132132
get: fn ($value) => $value,
133-
set: fn ($value) => Str::slug($value)
133+
set: fn ($value) => Str::slug($value),
134134
);
135135
}
136136

0 commit comments

Comments
 (0)