mirror of
https://github.com/safishamsi/graphify.git
synced 2026-07-12 18:37:12 +00:00
1fbcaf840f
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
330 B
PHP
17 lines
330 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
class PaymentGateway {}
|
|
class StripeGateway {}
|
|
class CashierGateway {}
|
|
|
|
class AppServiceProvider
|
|
{
|
|
public function register(): void
|
|
{
|
|
$this->app->bind(PaymentGateway::class, StripeGateway::class);
|
|
$this->app->singleton(CashierGateway::class, StripeGateway::class);
|
|
}
|
|
}
|