Skip to content

Commit

Permalink
Update SessionTrackerServiceProvider.php
Browse files Browse the repository at this point in the history
  • Loading branch information
hardevine authored Nov 24, 2018
1 parent db6742c commit 92aba5c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/SessionTrackerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ class SessionTrackerServiceProvider extends ServiceProvider {
public function boot()
{
$this->publishes([
__DIR__ . '/../config/cart.php' => config_path('sessionTracker.php')],'config');
__DIR__ . '/config/cart.php' => config_path('sessionTracker.php')],'config');

$this->publishes([
__DIR__.'/../migrations' => base_path('database/migrations')
__DIR__.'/migrations' => base_path('database/migrations')
],'migrations');

$router = $this->app['router'];
Expand All @@ -30,7 +30,7 @@ public function boot()
*/
public function register()
{
$config = __DIR__ . '/../config/config.php';
$config = __DIR__ . '/config/config.php';
$this->mergeConfigFrom(
$config, 'sessionTracker'
);
Expand Down

0 comments on commit 92aba5c

Please sign in to comment.