1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
Description: Fix issues with php8.2.
Author: Bas Couwenberg <sebastic@debian.org>
Bug: https://github.com/Icinga/icingaweb2/issues/4918
--- a/vendor/ipl/sql/src/Config.php
+++ b/vendor/ipl/sql/src/Config.php
@@ -33,6 +33,9 @@ class Config
}
}
+ /** @var string Database type */
+ public $type;
+
/** @var string Type of the DBMS */
public $db;
@@ -51,6 +54,27 @@ class Config
/** @var string Password to use for authentication */
public $password;
+ /** @var bool Use SSL for connection */
+ public $use_ssl;
+
+ /** @var bool Don't verify SSL cerificate */
+ public $ssl_do_not_verify_server_cert;
+
+ /** @var string Path to SSL certificate */
+ public $ssl_cert;
+
+ /** @var string Path to SSL key */
+ public $ssl_key;
+
+ /** @var string Path to SSL CA file */
+ public $ssl_ca;
+
+ /** @var string Path to SSL CA directory */
+ public $ssl_capath;
+
+ /** @var string SSL ciphers */
+ public $ssl_cipher;
+
/**
* Character set for the connection
*
|