Skip to content

Commit

Permalink
Fix for billingContact -> billingContactId (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
colinbird authored and adamaltman committed Dec 21, 2016
1 parent c83fd41 commit 9c72b41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Entities/PaymentCard.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public function setCustomerId($value)
*/
public function getBillingContactId()
{
return $this->getAttribute('billingContact');
return $this->getAttribute('billingContactId');
}

/**
Expand All @@ -144,7 +144,7 @@ public function getBillingContactId()
*/
public function setBillingContactId($value)
{
return $this->setAttribute('billingContact', $value);
return $this->setAttribute('billingContactId', $value);
}

/**
Expand Down

0 comments on commit 9c72b41

Please sign in to comment.