Skip to content

Commit

Permalink
move var
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Dec 20, 2019
1 parent 12c2882 commit f13aef8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion database/factories/UserFactory.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php

/** @var \Illuminate\Database\Eloquent\Factory $factory */
use App\User;
use Faker\Generator as Faker;
use Illuminate\Support\Str;
Expand All @@ -16,6 +15,8 @@
|
*/

/** @var \Illuminate\Database\Eloquent\Factory $factory */

$factory->define(User::class, function (Faker $faker) {
return [
'name' => $faker->name,
Expand Down

0 comments on commit f13aef8

Please sign in to comment.