Skip to content

Commit

Permalink
use new stripe facade namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
repl6669 committed Aug 23, 2024
1 parent 6aefb9d commit 8564779
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/StripePaymentAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Config;
use Lunar\Models\Cart;
use Lunar\Stripe\Facades\StripeFacade;
use Lunar\Stripe\Facades\Stripe;
use Lunar\Stripe\Managers\StripeManager;
use Spatie\StripeWebhooks\ProcessStripeWebhookJob;
use Spatie\StripeWebhooks\StripeSignatureValidator;
Expand All @@ -34,7 +34,7 @@ public function __construct()
'process_webhook_job' => ProcessStripeWebhookJob::class,
]);

$this->stripeManager = StripeFacade::getFacadeRoot();
$this->stripeManager = Stripe::getFacadeRoot();
}

/**
Expand Down

0 comments on commit 8564779

Please sign in to comment.