Skip to content

Commit

Permalink
Merge pull request #238 from sonus/patch-1
Browse files Browse the repository at this point in the history
Fix for php artisan module:seed command
  • Loading branch information
gravitano committed Jan 11, 2016
2 parents c3836e2 + dd814a1 commit 002f20e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Commands/SeedCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function getSeederName($name)

$namespace = $this->laravel['modules']->config('namespace');

return $namespace.'\\'.$name.'\Database\Seeders\\'.$name.'TableSeeder';
return $namespace.'\\'.$name.'\Database\Seeders\\'.$name.'DatabaseSeeder';
}

/**
Expand Down

0 comments on commit 002f20e

Please sign in to comment.