15 خطوط
345 B
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);
|
|
}
|
|
}
|