CRM-16173 - Rename createCACert() to getCACert().
authorTim Otten <totten@civicrm.org>
Fri, 27 Mar 2015 03:05:58 +0000 (20:05 -0700)
committerTim Otten <totten@civicrm.org>
Tue, 14 Jul 2015 04:00:06 +0000 (21:00 -0700)
CRM/Cxn/BAO/Cxn.php

index 434ffa0561d928633e916d11e3aefd8eb82634db..7e28772b12fde50ec4be1002535312d102c10d8d 100644 (file)
@@ -85,7 +85,7 @@ class CRM_Cxn_BAO_Cxn extends CRM_Cxn_DAO_Cxn {
    *   The PEM-encoded root certificate. NULL if verification is disabled.
    * @throws CRM_Core_Exception
    */
-  public static function createCACert() {
+  public static function getCACert() {
     if (!defined('CIVICRM_CXN_CA') || CIVICRM_CXN_CA === 'CiviRootCA') {
       $file = Constants::getCert();
     }
@@ -128,7 +128,7 @@ class CRM_Cxn_BAO_Cxn extends CRM_Cxn_DAO_Cxn {
 
   public static function createRegistrationClient() {
     $cxnStore = new \CRM_Cxn_CiviCxnStore();
-    $client = new \Civi\Cxn\Rpc\RegistrationClient(self::createCACert(), $cxnStore, \CRM_Cxn_BAO_Cxn::getSiteCallbackUrl());
+    $client = new \Civi\Cxn\Rpc\RegistrationClient(self::getCACert(), $cxnStore, \CRM_Cxn_BAO_Cxn::getSiteCallbackUrl());
     $client->setLog(new \CRM_Utils_SystemLogger());
     return $client;
   }