Skip to content

Commit

Permalink
update for custom fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Daron Adkins committed Nov 27, 2019
1 parent 540ddf9 commit 80a59ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Subscription.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,11 @@ public function execute()
private function handleSubscription()
{
$subscription = new ARBSubscriptionType();
$subscription->setName("UMHEF Donation Subscription");
$subscription->setName($this->details->need);

$interval = new IntervalAType();
$interval->setLength(30);
$interval->setUnit("days");
$interval->setLength(1);
$interval->setUnit("months");

$paymentSchedule = new PaymentScheduleType();
$paymentSchedule->setInterval($interval);
Expand Down

0 comments on commit 80a59ef

Please sign in to comment.