rename ModelFactory to UserFactory to encourage separate files
This commit is contained in:
parent
8abc4d05c5
commit
67a8a11570
|
@ -1,18 +1,21 @@
|
|||
<?php
|
||||
|
||||
use App\User;
|
||||
use Faker\Generator as Faker;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Model Factories
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define all of your model factories. Model factories give
|
||||
| you a convenient way to create models for testing and seeding your
|
||||
| database. Just tell the factory how a default model should look.
|
||||
| This directory should contain each of the model factory definitions for
|
||||
| your application. Factories provide a convenient way to generate new
|
||||
| model instances for testing / seeding your application's database.
|
||||
|
|
||||
*/
|
||||
|
||||
/** @var \Illuminate\Database\Eloquent\Factory $factory */
|
||||
$factory->define(App\User::class, function (Faker\Generator $faker) {
|
||||
$factory->define(User::class, function (Faker $faker) {
|
||||
static $password;
|
||||
|
||||
return [
|
Loading…
Reference in New Issue