replacing '-' with '_'

This commit is contained in:
Ganesh Hegde
2013-05-30 15:40:41 +05:30
parent ffeb952377
commit 37c9617285

View File

@@ -9,8 +9,8 @@ class CreditCardHistory extends PPModel {
* @array * @array
* @param PayPal\Api\CreditCard $credit-cards * @param PayPal\Api\CreditCard $credit-cards
*/ */
public function setCreditCards($credit-cards) { public function setCreditCards($credit_cards) {
$this->credit-cards = $credit-cards; $this->credit_cards = $credit_cards;
return $this; return $this;
} }
@@ -28,8 +28,8 @@ class CreditCardHistory extends PPModel {
* @param PayPal\Api\CreditCard $credit-cards * @param PayPal\Api\CreditCard $credit-cards
* @deprecated. Instead use setCreditCards * @deprecated. Instead use setCreditCards
*/ */
public function setCredit_cards($credit-cards) { public function setCredit_cards($credit_cards) {
$this->credit-cards = $credit-cards; $this->credit_cards = $credit_cards;
return $this; return $this;
} }
/** /**