host)) { $dsn .= "//{$config->host}"; if (! empty($config->port)) { $dsn .= ":{$config->port}/"; } $dsn .= '/'; } $dsn .= $config->dbname; if (! empty($config->charset)) { $dsn .= ";charset={$config->charset}"; } return $dsn; } public function setClientTimezone(Connection $db) { $db->prepexec('ALTER SESSION SET TIME_ZONE = ?', [$this->getTimezoneOffset()]); return $this; } }