Skip to content

Commit

Permalink
Fixing incorrect config path.
Browse files Browse the repository at this point in the history
  • Loading branch information
joshforbes committed Nov 10, 2016
1 parent 497c683 commit 1e34c3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/GoogleGeocoderServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ class GoogleGeocoderServiceProvider extends ServiceProvider
public function boot()
{
$this->publishes([
__DIR__.'/../../../config/geocoder.php' => config_path('geocoder.php'),
__DIR__.'/../config/geocoder.php' => config_path('geocoder.php'),
], 'config');
}

public function register()
{
$this->mergeConfigFrom(__DIR__.'/../../../config/geocoder.php', 'geocoder');
$this->mergeConfigFrom(__DIR__.'/../config/geocoder.php', 'geocoder');

$this->app->bind(GoogleGeocoder::class, function ($app) {
$client = new Client();
Expand Down

0 comments on commit 1e34c3d

Please sign in to comment.