PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
stancl
/
tenancy
/
src
/
Contracts
/
Editing: TenantDatabaseManager.php
<?php declare(strict_types=1); namespace Stancl\Tenancy\Contracts; use Stancl\Tenancy\Exceptions\NoConnectionSetException; interface TenantDatabaseManager { /** * Create a database. */ public function createDatabase(TenantWithDatabase $tenant): bool; /** * Delete a database. */ public function deleteDatabase(TenantWithDatabase $tenant): bool; /** * Does a database exist. * * @param string $name * @return bool */ public function databaseExists(string $name): bool; /** * Make a DB connection config array. * * @param array $baseConfig * @param string $databaseName * @return array */ public function makeConnectionConfig(array $baseConfig, string $databaseName): array; /** * Set the DB connection that should be used by the tenant database manager. * * @throws NoConnectionSetException * * @param string $connection * @return void */ public function setConnection(string $connection): void; }
SAVE
CANCEL