Skip to content

Commit

Permalink
fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
tymondesigns committed Jan 30, 2017
1 parent cbf41f8 commit 9265f94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Providers/AbstractServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ protected function getConfigInstance($key)
$instance = $this->config($key);

if (is_string($instance)) {
return new $instance;
return $this->app->make($instance);
}

return $instance;
Expand Down

0 comments on commit 9265f94

Please sign in to comment.