Merge pull request #13988 from seamuslee001/coder_upgrade_dao_files
[civicrm-core.git] / CRM / SMS / DAO / Provider.php
index 7ed8179e3d8b962b7d50df67cc12001039dbe1b3..969c212421af96a0f22fd1e94b717c9c862734f9 100644 (file)
@@ -19,14 +19,14 @@ class CRM_SMS_DAO_Provider extends CRM_Core_DAO {
    *
    * @var string
    */
-  static $_tableName = 'civicrm_sms_provider';
+  public static $_tableName = 'civicrm_sms_provider';
 
   /**
    * Should CiviCRM log any modifications to this table in the civicrm_log table.
    *
    * @var bool
    */
-  static $_log = FALSE;
+  public static $_log = FALSE;
 
   /**
    * SMS Provider ID
@@ -111,7 +111,7 @@ class CRM_SMS_DAO_Provider extends CRM_Core_DAO {
    */
   public static function getReferenceColumns() {
     if (!isset(Civi::$statics[__CLASS__]['links'])) {
-      Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__);
+      Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__);
       Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'domain_id', 'civicrm_domain', 'id');
       CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']);
     }