Skip to content

Commit

Permalink
Resolved requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
msoares94 committed Apr 26, 2024
1 parent 3e93d0d commit 58f3726
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion database/seeders/UserSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ class UserSeeder extends Seeder
*/
public function run(): void
{
$user = User::query()->where('email', '[email protected]')->first();
$user = User::query()
->where('email', '[email protected]')
->first();

if (! $user) {
User::query()->create([
Expand Down

0 comments on commit 58f3726

Please sign in to comment.