Ejemplo n.º 1
0
 /**
  * Set the fallback CA certificate if one is not specified
  * for the session, given a string.
  *
  * @param string The certificate
  * @return void
  */
 public static function setGlobalCABundleFromString($certificate)
 {
     $temp = new TempFile();
     Filesystem::writeFile($temp, $certificate);
     self::$globalCABundle = $temp;
 }