Remove constructors that do nothing
authorColeman Watts <coleman@civicrm.org>
Mon, 17 Jan 2022 20:54:46 +0000 (15:54 -0500)
committerColeman Watts <coleman@civicrm.org>
Mon, 17 Jan 2022 20:54:46 +0000 (15:54 -0500)
CRM/Contact/Page/View/CustomData.php
CRM/Contribute/BAO/ContributionSoft.php
CRM/Core/BAO/FinancialTrxn.php
CRM/Core/Config.php
CRM/Core/Smarty.php
CRM/Event/BAO/Participant.php
CRM/Friend/BAO/Friend.php
CRM/Mailing/BAO/BouncePattern.php

index 3000627b0b48695e604be61f5977fc49cd5c8547..438bbc83a12e3d599353207575231579b08a14e8 100644 (file)
@@ -27,15 +27,6 @@ class CRM_Contact_Page_View_CustomData extends CRM_Core_Page {
    */
   public $_groupId;
 
-  /**
-   * Class constructor.
-   *
-   * @return CRM_Contact_Page_View_CustomData
-   */
-  public function __construct() {
-    parent::__construct();
-  }
-
   /**
    * Add a few specific things to view contact.
    */
index 655f112cd92b6a120434b490f35c513c1c9d25a4..7d93a9250a577dd9d54d6e1e27259c5273f72b27 100644 (file)
@@ -18,13 +18,6 @@ use Civi\Api4\Contribution;
  */
 class CRM_Contribute_BAO_ContributionSoft extends CRM_Contribute_DAO_ContributionSoft {
 
-  /**
-   * Construct method.
-   */
-  public function __construct() {
-    parent::__construct();
-  }
-
   /**
    * Add contribution soft credit record.
    *
index 0e1499e208094dd118e7f9b75f941184351aa402..7cd00efb32fc027dab1bf3396ac4c6f35d9349f8 100644 (file)
  * @copyright CiviCRM LLC https://civicrm.org/licensing
  */
 class CRM_Core_BAO_FinancialTrxn extends CRM_Financial_DAO_FinancialTrxn {
-  /**
-   * Class constructor.
-   *
-   * @return \CRM_Financial_DAO_FinancialTrxn
-   */
-
-  /**
-   */
-  public function __construct() {
-    parent::__construct();
-  }
 
   /**
    * Takes an associative array and creates a financial transaction object.
index 6ca6e68ea45d1940c0ff2d91f63a0ec9193ef168..c1db7ff80906098b13ae85bf8d5d48a85edb2730 100644 (file)
@@ -66,14 +66,6 @@ class CRM_Core_Config extends CRM_Core_Config_MagicMerge {
    */
   private static $_singleton = NULL;
 
-  /**
-   * The constructor. Sets domain id if defined, otherwise assumes
-   * single instance installation.
-   */
-  public function __construct() {
-    parent::__construct();
-  }
-
   /**
    * Singleton function used to manage this object.
    *
index 49a40a4fe3ff0a7941dc53ac06918adadbe7c604..bcd9c69d91bddd7e9aa8cce5f5d4d1e6f94c0805 100644 (file)
@@ -63,15 +63,6 @@ class CRM_Core_Smarty extends Smarty {
    */
   private $backupFrames = [];
 
-  /**
-   * Class constructor.
-   *
-   * @return CRM_Core_Smarty
-   */
-  public function __construct() {
-    parent::__construct();
-  }
-
   private function initialize() {
     $config = CRM_Core_Config::singleton();
 
index 537142a2805ab2b892b59f9c038d71008e48aa2f..ed4ef1e67ebc7f84aee60a712ee477ef92851628 100644 (file)
@@ -44,12 +44,6 @@ class CRM_Event_BAO_Participant extends CRM_Event_DAO_Participant {
     'Pending from approval' => ['Registered', 'Cancelled'],
   ];
 
-  /**
-   */
-  public function __construct() {
-    parent::__construct();
-  }
-
   /**
    * Takes an associative array and creates a participant object.
    *
index df14f590826a6394e79c0479e7ea3206441103f0..216242af2e86ed4e6dd8176e69129383a2171f2e 100644 (file)
@@ -28,12 +28,6 @@ class CRM_Friend_BAO_Friend extends CRM_Friend_DAO_Friend {
    */
   public $_friendId;
 
-  /**
-   */
-  public function __construct() {
-    parent::__construct();
-  }
-
   /**
    * Takes an associative array and creates a friend object.
    *
index b8ffd594c2d932809a236f6b47a684e30f387b9f..a56aefa019c40a9c1413e827fd0948c01dbaf4f9 100644 (file)
@@ -22,13 +22,6 @@ class CRM_Mailing_BAO_BouncePattern extends CRM_Mailing_DAO_BouncePattern {
    */
   public static $_patterns = NULL;
 
-  /**
-   * Class constructor.
-   */
-  public function __construct() {
-    parent::__construct();
-  }
-
   /**
    * Build the static pattern array.
    */