Skip to content

Commit

Permalink
Merge pull request #16 from zenchef/master
Browse files Browse the repository at this point in the history
Fix singleton
  • Loading branch information
davispeixoto authored Oct 10, 2016
2 parents a595429 + 878432b commit 593b59d
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 593b59d

Please sign in to comment.