Skip to content
This repository has been archived by the owner on Mar 9, 2021. It is now read-only.

Commit

Permalink
Fixed loading config file in provider
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjosh authored May 8, 2017
1 parent 712f852 commit 7e2c58a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Provider/PhantomJsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class PhantomJsServiceProvider extends ServiceProvider
*/
public function boot()
{
$this->publishes([ __DIR__ . '/../config.php' => config_path( 'phantomjs.php' ) ]);
$this->publishes([ __DIR__ . '/../../config.php' => config_path( 'phantomjs.php' ) ]);
}

/**
Expand Down Expand Up @@ -79,4 +79,4 @@ protected function getServiceContainer()

return $serviceContainer;
}
}
}

0 comments on commit 7e2c58a

Please sign in to comment.