Skip to content
Snippets Groups Projects
Commit 0b7855a9 authored by mattwire's avatar mattwire
Browse files

Add getter/setter for contributionRecurID

parent a96b7f0b
Loading
......@@ -158,6 +158,22 @@ trait CRM_Core_Payment_MJWIPNTrait {
return $this->_paymentProcessor;
}
/**
* @param int $recurID
*
* @return void
*/
public function setContributionRecurID(int $recurID) {
$this->contribution_recur_id = $recurID;
}
/**
* @return int|null
*/
public function getContributionRecurID() {
return $this->contribution_recur_id;
}
/**
* @param bool $verify
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment