import class

This commit is contained in:
Taylor Otwell 2018-12-18 09:07:33 -06:00
parent 4070dc98d4
commit 3959c09f3b
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
<?php
use App\User;
use Faker\Generator as Faker;
/*
@ -13,7 +14,7 @@
|
*/
$factory->define(App\User::class, function (Faker $faker) {
$factory->define(User::class, function (Faker $faker) {
return [
'name' => $faker->name,
'email' => $faker->unique()->safeEmail,