Files
graphify/tests/fixtures/sample_php_container.php
T
2026-04-13 08:39:28 +01:00

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);
}
}