Skip to content

Commit abe9a80

Browse files
committed
Path correction in ServiceProvider
1 parent 0189625 commit abe9a80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Providers/PolymorphicEavServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ class PolymorphicEavServiceProvider extends ServiceProvider
1111
*/
1212
public function boot()
1313
{
14-
$this->loadMigrationsFrom(__DIR__ . '/../database/migrations');
14+
$this->loadMigrationsFrom(__DIR__ . '/../../database/migrations');
1515
}
1616

1717
/**
1818
* Register the application services.
1919
*/
2020
public function register()
2121
{
22-
$this->mergeConfigFrom(__DIR__ . '/../config/config.php', 'laravel-polymorphic-eav');
22+
$this->mergeConfigFrom(__DIR__ . '/../../config/config.php', 'laravel-polymorphic-eav');
2323
}
2424
}

0 commit comments

Comments
 (0)