From 6e2b56237f52b0a1aa5b7279ae57f66ad87842f7 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 24 May 2023 11:04:57 +0200 Subject: [PATCH] Add docblock to PostgresTenancyBootstrapper --- .../Integrations/PostgresTenancyBootstrapper.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Bootstrappers/Integrations/PostgresTenancyBootstrapper.php b/src/Bootstrappers/Integrations/PostgresTenancyBootstrapper.php index cb202d44..122d3351 100644 --- a/src/Bootstrappers/Integrations/PostgresTenancyBootstrapper.php +++ b/src/Bootstrappers/Integrations/PostgresTenancyBootstrapper.php @@ -10,6 +10,10 @@ use Stancl\Tenancy\Contracts\TenancyBootstrapper; use Stancl\Tenancy\Contracts\Tenant; use Stancl\Tenancy\Database\Contracts\TenantWithDatabase; +/** + * Purge central connection, set Postgres credentials to the tenant's credentials + * and use Postgres as the central connection. + */ class PostgresTenancyBootstrapper implements TenancyBootstrapper { protected array $originalCentralConnectionConfig;