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 baf1178 commit eeb5004Copy full SHA for eeb5004
src/StickinessServiceProvider.php
@@ -42,7 +42,7 @@ public function register(): void
42
$this->app->singleton(StickinessEventListener::class);
43
$this->app->singleton('db.factory', ConnectionFactory::class);
44
45
- $this->app->bind(StickinessResolverInterface::class, IpBasedResolver::class);
46
- $this->app->bind(JobInitializerInterface::class, AlwaysModifiedInitializer::class);
+ $this->app->bindIf(StickinessResolverInterface::class, IpBasedResolver::class);
+ $this->app->bindIf(JobInitializerInterface::class, AlwaysModifiedInitializer::class);
47
}
48
0 commit comments