Skip to content

Commit 3959c09

Browse files
committed
import class
1 parent 4070dc9 commit 3959c09

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

database/factories/UserFactory.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?php
22

3+
use App\User;
34
use Faker\Generator as Faker;
45

56
/*
@@ -13,7 +14,7 @@
1314
|
1415
*/
1516

16-
$factory->define(App\User::class, function (Faker $faker) {
17+
$factory->define(User::class, function (Faker $faker) {
1718
return [
1819
'name' => $faker->name,
1920
'email' => $faker->unique()->safeEmail,

0 commit comments

Comments
 (0)