summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/mysqli/mysqli_driver.php
diff options
context:
space:
mode:
authorTim Nolte <noltet@sekisui-spi.com>2015-06-08 16:40:26 +0200
committerTim Nolte <noltet@sekisui-spi.com>2015-06-08 16:40:26 +0200
commitc09ab9d2b31a6c1d60a8db3970dd56feceee9415 (patch)
tree9ced6531bdf95c5f42c75760680b785620f396b5 /system/database/drivers/mysqli/mysqli_driver.php
parenta0f1872e4978304a3b096ce90ee539c5e481b4f2 (diff)
Fixed missing MySQLi driver parameter DOCBLOCK descriptions. Updated database configuration documentation to include a list of the new MySQLi driver parameters.
Signed-off-by: Tim Nolte <noltet@sekisui-spi.com>
Diffstat (limited to 'system/database/drivers/mysqli/mysqli_driver.php')
-rw-r--r--system/database/drivers/mysqli/mysqli_driver.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/system/database/drivers/mysqli/mysqli_driver.php b/system/database/drivers/mysqli/mysqli_driver.php
index dd4a9c460..26b2a8a09 100644
--- a/system/database/drivers/mysqli/mysqli_driver.php
+++ b/system/database/drivers/mysqli/mysqli_driver.php
@@ -102,6 +102,8 @@ class CI_DB_mysqli_driver extends CI_DB {
public $stricton = FALSE;
/**
+ * The path name to the key file.
+ *
* @see http://php.net/manual/en/mysqli.ssl-set.php Documentation for MySQLi
*
* @var string
@@ -109,6 +111,8 @@ class CI_DB_mysqli_driver extends CI_DB {
public $ssl_key = '';
/**
+ * The path name to the certificate file.
+ *
* @see http://php.net/manual/en/mysqli.ssl-set.php Documentation for MySQLi
*
* @var string
@@ -116,6 +120,8 @@ class CI_DB_mysqli_driver extends CI_DB {
public $ssl_cert = '';
/**
+ * The path name to the certificate authority file.
+ *
* @see http://php.net/manual/en/mysqli.ssl-set.php Documentation for MySQLi
*
* @var string
@@ -123,6 +129,8 @@ class CI_DB_mysqli_driver extends CI_DB {
public $ssl_ca = '';
/**
+ * The pathname to a directory that contains trusted SSL CA certificates in PEM format.
+ *
* @see http://php.net/manual/en/mysqli.ssl-set.php Documentation for MySQLi
*
* @var string
@@ -130,6 +138,8 @@ class CI_DB_mysqli_driver extends CI_DB {
public $ssl_capath = '';
/**
+ * A list of allowable ciphers to use for SSL encryption.
+ *
* @see http://php.net/manual/en/mysqli.ssl-set.php Documentation for MySQLi
*
* @var string