filename, "cert" => filename, "ca" => filename, "verify" => bool] * PostgresSQL: ["mode" => sslmode] (https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNECT-SSLMODE) * MSSQL: ["Encrypt" => true, "TrustServerCertificate" => true] (https://learn.microsoft.com/en-us/sql/connect/php/connection-options) */ function __construct($ssl) { $this->ssl = $ssl; } function connectSsl() { return $this->ssl; } }