New_Micro_Learning/backend/app/Modules/Tenancy/Infrastructure/TenancyServiceProvider.php

15 خطوط
345 B
PHP

<?php
namespace App\Modules\Tenancy\Infrastructure;
use App\Modules\Tenancy\Application\TenantContext;
use Illuminate\Support\ServiceProvider;
class TenancyServiceProvider extends ServiceProvider
{
public function register(): void
{
$this->app->scoped(TenantContext::class, fn (): TenantContext => new TenantContext);
}
}