Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/5.1' into 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Jul 3, 2015
2 parents 3d94725 + fdd21f9 commit abfaab5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions seeding.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ Within the `DatabaseSeeder` class, you may use the `call` method to execute addi
{
Model::unguard();

$this->call('UserTableSeeder');
$this->call('PostsTableSeeder');
$this->call('CommentsTableSeeder');
$this->call(UserTableSeeder::class);
$this->call(PostsTableSeeder::class);
$this->call(CommentsTableSeeder::class);
}

<a name="running-seeders"></a>
Expand Down

0 comments on commit abfaab5

Please sign in to comment.