Remove unused functions from AuthorizeNetIPN
authorEileen McNaughton <emcnaughton@wikimedia.org>
Thu, 22 Jun 2023 01:15:52 +0000 (18:15 -0700)
committerEileen McNaughton <emcnaughton@wikimedia.org>
Thu, 22 Jun 2023 01:15:52 +0000 (18:15 -0700)
CRM/Core/Payment/AuthorizeNetIPN.php

index 8ac0a5d13ed75ce7dec018c793a7b968849bf0b0..ea8632b097b3699225676af77b0c6e0edfe7c27a 100644 (file)
@@ -180,18 +180,6 @@ class CRM_Core_Payment_AuthorizeNetIPN extends CRM_Core_Payment_BaseIPN {
     return $this->retrieve('x_response_code', 'Integer') === 1;
   }
 
-  /**
-   * Get ids from input.
-   *
-   * @param array $ids
-   *
-   * @throws \CRM_Core_Exception
-   */
-  public function getIDs(&$ids) {
-    $ids['contribution'] = $this->getContributionID();
-    $ids['contributionRecur'] = $this->getContributionRecurID();
-  }
-
   /**
    * @param string $name
    *   Parameter name.
@@ -217,25 +205,6 @@ class CRM_Core_Payment_AuthorizeNetIPN extends CRM_Core_Payment_BaseIPN {
     return $value;
   }
 
-  /**
-   * Get membership id, if any.
-   *
-   * @param int $contributionID
-   * @param int $contributionRecurID
-   *
-   * @return int|null
-   */
-  protected function getMembershipID(int $contributionID, int $contributionRecurID): ?int {
-    // Get membershipId. Join with membership payment table for additional checks
-    $sql = "
-    SELECT m.id
-      FROM civicrm_membership m
-INNER JOIN civicrm_membership_payment mp ON m.id = mp.membership_id AND mp.contribution_id = {$contributionID}
-     WHERE m.contribution_recur_id = {$contributionRecurID}
-     LIMIT 1";
-    return CRM_Core_DAO::singleValueQuery($sql);
-  }
-
   /**
    * Get the recurring contribution object.
    *