Skip to content

Commit

Permalink
Fix config path
Browse files Browse the repository at this point in the history
  • Loading branch information
Jono20201 committed Mar 14, 2018
1 parent 42fd13f commit 63b296f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Frameworks/Laravel/DistanceMatrixServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ public function register()
*/
public function boot()
{
$this->mergeConfigFrom(__DIR__ . '/config.php', 'google');
$this->mergeConfigFrom(__DIR__ . '/google.php', 'google');

$this->publishes([
__DIR__ . '/config.php' => config_path('google.php'),
__DIR__ . '/google.php' => config_path('google.php'),
], 'config');
}

Expand Down

0 comments on commit 63b296f

Please sign in to comment.