Skip to content

Commit

Permalink
Fixing deprecated method calls
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Engebretson <[email protected]>
  • Loading branch information
Adam Engebretson committed Dec 23, 2015
1 parent fae45d3 commit f1503b9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/RemoteServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ class RemoteServiceProvider extends ServiceProvider
*/
protected $defer = true;

/**
* Boot the Service Provider
*/
public function boot()
{
$this->publishes([
Expand All @@ -39,7 +42,7 @@ public function boot()
*/
public function register()
{
$this->app->bindShared('remote', function ($app) {
$this->app->singleton('remote', function ($app) {
return new RemoteManager($app);
});
}
Expand Down

0 comments on commit f1503b9

Please sign in to comment.