1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-05-07 00:04:04 +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

@ -80,6 +80,6 @@ trait ManagesPostgresUsers
public function userExists(string $username): bool
{
return (bool) $this->connection()->select("SELECT usename FROM pg_user WHERE usename = ?", [$username]);
return (bool) $this->connection()->select('SELECT usename FROM pg_user WHERE usename = ?', [$username]);
}
}