Skip to content

Commit

Permalink
fix invalid credentials error
Browse files Browse the repository at this point in the history
  • Loading branch information
skecskes committed Oct 27, 2015
1 parent ebebce0 commit 9f5d135
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LaravelDotmailerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function boot()
*/
public function register()
{
$config = $this->app->config->get('dotmailer.config');
$config = $this->app->config->get('dotmailer');

$credentials = [
Container::USERNAME => $config['username'],
Expand Down Expand Up @@ -60,4 +60,4 @@ private function registerConfig()
$this->publishes([$configPath => config_path('dotmailer.php')], 'dotmailer');
$this->mergeConfigFrom($configPath, 'dotmailer');
}
}
}

0 comments on commit 9f5d135

Please sign in to comment.