Skip to content

Commit

Permalink
fix(app-check): corrected the name of the underlying method
Browse files Browse the repository at this point in the history
  • Loading branch information
nhaynes committed Mar 30, 2023
1 parent 41f2053 commit 162b3a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function register(): void

private function registerComponents(): void
{
$this->app->singleton(Firebase\Contract\AppCheck::class, static fn (Container $app) => $app->make(FirebaseProjectManager::class)->project()->appcheck());
$this->app->singleton(Firebase\Contract\AppCheck::class, static fn (Container $app) => $app->make(FirebaseProjectManager::class)->project()->appCheck());
$this->app->alias(Firebase\Contract\AppCheck::class, 'firebase.app_check');

$this->app->singleton(Firebase\Contract\Auth::class, static fn (Container $app) => $app->make(FirebaseProjectManager::class)->project()->auth());
Expand Down

0 comments on commit 162b3a5

Please sign in to comment.