Skip to content

Commit

Permalink
Bind the application to the manager
Browse files Browse the repository at this point in the history
  • Loading branch information
dwightwatson committed Jun 26, 2024
1 parent d127f1d commit 6c329ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PhonableServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ public function register(): void

$this->app->bind(
abstract: 'phone-identification',
concrete: Identification\Manager::class
concrete: fn ($app) => new Identification\Manager($app),
);

$this->app->bind(
abstract: 'phone-verification',
concrete: Verification\Manager::class
concrete: fn ($app) => new Verification\Manager($app),
);
}

Expand Down

0 comments on commit 6c329ab

Please sign in to comment.