1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-05-07 05:34:03 +00:00

Fix code style (php-cs-fixer)

This commit is contained in:
github-actions[bot] 2026-04-29 12:16:22 +00:00
parent 5adbc14a7e
commit 182f3a2eb2
8 changed files with 8 additions and 8 deletions

View file

@ -24,7 +24,7 @@ class PostgreSQLSchemaManager extends TenantDatabaseManager
public function databaseExists(string $name): bool
{
return (bool) $this->connection()->select("SELECT schema_name FROM information_schema.schemata WHERE schema_name = ?", [$name]);
return (bool) $this->connection()->select('SELECT schema_name FROM information_schema.schemata WHERE schema_name = ?', [$name]);
}
public function makeConnectionConfig(array $baseConfig, string $databaseName): array