Skip to content

Commit 34eea62

Browse files
Merge pull request #16 from stackkit/bugfix/conflict-cloud-tasks-queue
Fix conflicting facade accessor
2 parents 578ffa1 + 8d22e88 commit 34eea62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/CloudSchedulerServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ private function registerRoutes(Router $router)
2525

2626
private function registerClient()
2727
{
28-
$this->app->bind('open-id-verificator', OpenIdVerificatorConcrete::class);
28+
$this->app->bind('open-id-verificator-gcs', OpenIdVerificatorConcrete::class);
2929
}
3030
}

src/OpenIdVerificator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class OpenIdVerificator extends Facade
88
{
99
protected static function getFacadeAccessor()
1010
{
11-
return 'open-id-verificator';
11+
return 'open-id-verificator-gcs';
1212
}
1313

1414
public static function fake(): void

0 commit comments

Comments
 (0)