Skip to content

Commit

Permalink
Merge pull request #16 from stackkit/bugfix/conflict-cloud-tasks-queue
Browse files Browse the repository at this point in the history
Fix conflicting facade accessor
  • Loading branch information
marickvantuil authored Apr 26, 2022
2 parents 578ffa1 + 8d22e88 commit 34eea62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CloudSchedulerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ private function registerRoutes(Router $router)

private function registerClient()
{
$this->app->bind('open-id-verificator', OpenIdVerificatorConcrete::class);
$this->app->bind('open-id-verificator-gcs', OpenIdVerificatorConcrete::class);
}
}
2 changes: 1 addition & 1 deletion src/OpenIdVerificator.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class OpenIdVerificator extends Facade
{
protected static function getFacadeAccessor()
{
return 'open-id-verificator';
return 'open-id-verificator-gcs';
}

public static function fake(): void
Expand Down

0 comments on commit 34eea62

Please sign in to comment.