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.
1 parent faaeb3a commit 74899f9Copy full SHA for 74899f9
src/Query/Builder.php
@@ -1158,11 +1158,6 @@ protected function compileWheres(): array
1158
return $compiled;
1159
}
1160
1161
- /**
1162
- * @param array $where
1163
- *
1164
- * @return array
1165
- */
1166
protected function compileWhereBasic(array $where): array
1167
{
1168
$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