1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-05-06 19:44: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

@ -28,6 +28,6 @@ class MySQLDatabaseManager 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]);
}
}