We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fae45d3 commit f1503b9Copy full SHA for f1503b9
src/RemoteServiceProvider.php
@@ -23,6 +23,9 @@ class RemoteServiceProvider extends ServiceProvider
23
*/
24
protected $defer = true;
25
26
+ /**
27
+ * Boot the Service Provider
28
+ */
29
public function boot()
30
{
31
$this->publishes([
@@ -39,7 +42,7 @@ public function boot()
39
42
40
43
public function register()
41
44
- $this->app->bindShared('remote', function ($app) {
45
+ $this->app->singleton('remote', function ($app) {
46
return new RemoteManager($app);
47
});
48
}
0 commit comments