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