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
      *
