Exemple #1
0
 /**
  * Set SSL client certificates (experimental)
  *
  * @param string $sslCert SSL client certificate
  * @param string $sslKey SSL client key
  * @param string $sslCACert SSL CA cert (only required if you are having problems with your system CA cert)
  * @return void
  */
 public static function setSSLAuth($sslCert = null, $sslKey = null, $sslCACert = null)
 {
     self::$sslCert = $sslCert;
     self::$sslKey = $sslKey;
     self::$sslCACert = $sslCACert;
 }