mirror of
https://gh.wpcy.net/https://github.com/rilustrisimo/freescout-support.git
synced 2026-05-03 15:12:37 +08:00
9 lines
171 B
PHP
9 lines
171 B
PHP
<?php
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(App\Email::class, function (Faker $faker) {
|
|
return [
|
|
'email' => $faker->unique()->safeEmail,
|
|
];
|
|
});
|