blob: 7390c4448046c3f8a14a19f8a05a28dc8669a2e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
use League\FactoryMuffin\Faker\Facade as Faker;
/**
* General factory for the User Model
*/
$fm->define('UserFrosting\Sprinkle\Account\Database\Models\User')->setDefinitions([
'user_name' => Faker::unique()->firstNameMale(),
'first_name' => Faker::firstNameMale(),
'last_name' => Faker::firstNameMale(),
'email' => Faker::unique()->email(),
'locale' => 'en_US',
'flag_verified' => 1,
'flag_enabled' => 1,
'password' => Faker::password()
]);
|