Skip to content

Commit

Permalink
Fix singleton
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexLombry authored Oct 10, 2016
1 parent 8996fb0 commit 878432b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function boot()
*/
public function register()
{
$this->app['salesforce'] = $this->app->singleton('salesforce', function ($app) {
$this->app->singleton('salesforce', function ($app) {
$sf = new Salesforce(new Client());
$sf->connect($app['config']);

Expand Down

0 comments on commit 878432b

Please sign in to comment.