Skip to content

Commit

Permalink
using safeEmail instead of potentially real email addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
markhuot committed Sep 30, 2024
1 parent 30ed0f5 commit a7989d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/factories/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function newElement()

public function definition(int $index = 0)
{
$email = $this->faker->email();
$email = $this->faker->safeEmail();

return [
'email' => $email,
Expand Down

0 comments on commit a7989d0

Please sign in to comment.