We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 19fc801 + 92efdda commit 411735aCopy full SHA for 411735a
src/Query/Builder.php
@@ -1154,11 +1154,6 @@ protected function compileWheres(): array
1154
return $compiled;
1155
}
1156
1157
- /**
1158
- * @param array $where
1159
- *
1160
- * @return array
1161
- */
1162
protected function compileWhereBasic(array $where): array
1163
{
1164
$column = $where['column'];
tests/Models/User.php
@@ -130,7 +130,7 @@ protected function username(): Attribute
130
131
return Attribute::make(
132
get: fn ($value) => $value,
133
- set: fn ($value) => Str::slug($value)
+ set: fn ($value) => Str::slug($value),
134
);
135
136
0 commit comments