Skip to content

Commit

Permalink
Merge pull request caffeinated#408 from mjerwin/remove-slug-from-migr…
Browse files Browse the repository at this point in the history
…ation-function-in-stub

Removed unrequired 2nd parameter to loadMigrationsFrom()
  • Loading branch information
kaidesu authored Nov 9, 2019
2 parents 5bfeb9b + c493108 commit a0cfd38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/stubs/module/Providers/ModuleServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function boot()
{
$this->loadTranslationsFrom(module_path('DummySlug', 'ResourcesLangMapping', 'DummyLocation'), 'DummySlug');
$this->loadViewsFrom(module_path('DummySlug', 'ResourcesViewsMapping', 'DummyLocation'), 'DummySlug');
$this->loadMigrationsFrom(module_path('DummySlug', 'DatabaseMigrationsMapping', 'DummyLocation'), 'DummySlug');
$this->loadMigrationsFrom(module_path('DummySlug', 'DatabaseMigrationsMapping', 'DummyLocation'));
if(!$this->app->configurationIsCached()) {
$this->loadConfigsFrom(module_path('DummySlug', 'ConfigMapping', 'DummyLocation'));
}
Expand Down

0 comments on commit a0cfd38

Please sign in to comment.