From 856d4ce81be798456ea8e4d0784c8495050e346d Mon Sep 17 00:00:00 2001 From: dara Date: Thu, 26 Feb 2015 09:48:40 -0500 Subject: [PATCH] rename contact to billingContact --- lib/v2_1/PaymentCard.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/v2_1/PaymentCard.php b/lib/v2_1/PaymentCard.php index c9287f8c5..987108e04 100644 --- a/lib/v2_1/PaymentCard.php +++ b/lib/v2_1/PaymentCard.php @@ -61,8 +61,8 @@ class PaymentCard extends RebillyRequest public $expMonth; /** @var int $expYear */ public $expYear; - /** @var string $contact */ - public $contact; + /** @var string $billingContact */ + public $billingContact; /** @var int $cvv */ public $cvv; /** @var string $token */ @@ -73,6 +73,12 @@ class PaymentCard extends RebillyRequest /** @var string $id */ private $id; + /** + * Set customer's ID and version + * @param string $customerId + * @param null $id + * @throws Exception + */ public function __construct($customerId, $id = null) { $this->customerId = $customerId;