CRM/Core/Payment add missing code blocks (autogenerated)
[civicrm-core.git] / CRM / Core / Payment / PayPalIPN.php
index 99274206c1ab305fe925ac2c94d8d71592043e9e..694f30374b31a646853979826a8b39bc24b24ebe 100644 (file)
@@ -43,6 +43,14 @@ class CRM_Core_Payment_PayPalIPN extends CRM_Core_Payment_BaseIPN {
     parent::__construct();
   }
 
+  /**
+   * @param $name
+   * @param $type
+   * @param string $location
+   * @param bool $abort
+   *
+   * @return mixed
+   */
   static function retrieve($name, $type, $location = 'POST', $abort = TRUE) {
     static $store = NULL;
     $value = CRM_Utils_Request::retrieve($name, $type, $store,
@@ -56,6 +64,12 @@ class CRM_Core_Payment_PayPalIPN extends CRM_Core_Payment_BaseIPN {
     return $value;
   }
 
+  /**
+   * @param $input
+   * @param $ids
+   * @param $objects
+   * @param $first
+   */
   function recur(&$input, &$ids, &$objects, $first) {
     if (!isset($input['txnType'])) {
       CRM_Core_Error::debug_log_message("Could not find txn_type in input request");
@@ -205,6 +219,13 @@ class CRM_Core_Payment_PayPalIPN extends CRM_Core_Payment_BaseIPN {
     );
   }
 
+  /**
+   * @param $input
+   * @param $ids
+   * @param $objects
+   * @param bool $recur
+   * @param bool $first
+   */
   function single(&$input, &$ids, &$objects,
     $recur = FALSE,
     $first = FALSE
@@ -319,6 +340,10 @@ class CRM_Core_Payment_PayPalIPN extends CRM_Core_Payment_BaseIPN {
     }
   }
 
+  /**
+   * @param $input
+   * @param $ids
+   */
   function getInput(&$input, &$ids) {
     if (!$this->getBillingID($ids)) {
       return FALSE;